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

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

  boot.kernelParams = [ "preempt=full" ];

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

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

  virtualisation.podman.enable = true;
}