about summary refs log tree commit diff
path: root/modules/workstation/default.nix
blob: a6081ac12ee586699d429d75d81a1698c0cc40b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, pkgs, ... }:

{
  imports = [
    ../nix ../shell ../users ../ssh
    ./documentation ./windowing ./fonts ./gh ./hardware ./locale
    ./dict ./dino ./emacs ./gnupg ./lorri ./mail ./mpv ./weechat
  ];

  environment.systemPackages = with pkgs; [
    ffmpeg mosh mpv nix-index qemu youtube-dl
  ];

  services.getty.autologinUser = "qyliss";
  services.getty.loginOptions = "-- \\u";
  services.locate.enable = true;

  virtualisation.podman.enable = true;
}