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

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

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

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

}