about summary refs log tree commit diff
path: root/nixos/alpha/configuration.nix
blob: 961261617f2a6b717f24e25e999ac25e837ab98b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
{ config, pkgs, lib, ... }:

{
  imports = [ ];

  security = {
    rtkit.enable = true;
    doas.enable = true;
    doas.wheelNeedsPassword = false;
    sudo.wheelNeedsPassword = false;

    pam.services = {
      login.gnupg.enable = true;
      login.gnupg.storeOnly = true;

      greetd.gnupg.enable = true;
      greetd.gnupg.storeOnly = true;

      swaylock.gnupg.enable = true;
      i3lock.gnupg.enable = true;
      i3lock-color.gnupg.enable = true;
    };
  };

  boot.kernelPackages = pkgs.linuxPackages_5_15;
  boot.kernelParams = [
    "nohibernate"
    "nmi_watchdog=0"
    "systemd.watchdog-device/dev/watchdog"
  ];

  boot.initrd.supportedFilesystems = [ "zfs" ];
  boot.supportedFilesystems = [ "zfs" ];
  boot.zfs.enableUnstable = true;

  # GRUB bootloader
  boot.loader.efi.canTouchEfiVariables = true;
  boot.loader.grub = {
    enable = true;
    version = 2;

    efiSupport = true;
    configurationLimit = 10;
    device = "nodev";
    useOSProber = true;
    copyKernels = true;
    extraEntries = ''
      menuentry "Reboot" {
        reboot
      }
      menuentry "Shutdown" {
        halt
      }
    '';
  };

  networking.hostName = "alpha";
  networking.hostId = "641a7b10";

  networking.networkmanager.enable = true;
  networking.useDHCP = false;
  networking.firewall.enable = true;

  i18n.defaultLocale = "en_US.UTF-8";

  console.font = "${pkgs.dina-font}/share/fonts/misc/DinaMedium10.pcf.gz";
  console.colors = [
    "232323"
    "ff668c"
    "c2d6f0"
    "fac661"
    "7d7d7d"
    "8c8c8c"
    "949494"
    "c4c4c4"
    "7d7d7d"
    "ff85a3"
    "cedef3"
    "fbd181"
    "979797"
    "a3a3a3"
    "a9a9a9"
    "d0d0d0"
  ];
  console.keyMap = "us";

  time.timeZone = "Asia/Seoul";

  environment.systemPackages = with pkgs; [ gcc gnumake ];

  services.zfs.trim.enable = true;
  services.zfs.autoScrub.enable = true;
  services.zfs.autoScrub.pools = [ "rpool" ];

  services.openssh.enable = true;
  services.openssh.passwordAuthentication = false;

  sound.enable = false;

  services.pipewire = {
    enable = true;

    alsa.enable = true;
    alsa.support32Bit = true;
    pulse.enable = true;
  };

  hardware.bluetooth.enable = true;

  services.greetd = {
    enable = true;

    settings.default_session.command = "${pkgs.greetd.tuigreet}/bin/tuigreet -t -c sway";
  };

  # https://github.com/apognu/tuigreet/issues/17
  systemd.services.greetd.unitConfig.After = lib.mkOverride 0 [ "multi-user.target" ];

  services.journald.extraConfig = lib.mkForce "";

  systemd.extraConfig = "RebootWatchdogSec=5";

  fonts = {
    fontDir.enable = true;

    fonts = with pkgs; [
      bitmap-font-collections
      cozette
      dina-font
      envypn-font
      iosevka-pure-bin
      readable-cherry
      sarasa-gothic
      siji
      jetbrains-mono
      tamzen
      twemoji-color-font
      terminus-font-ll2-td1
      emacs-all-the-icons-fonts
      (nerdfonts.override { fonts = [ "Iosevka" "JetBrainsMono" ]; })
    ];

    fontconfig = {
      enable = true;

      defaultFonts = {
        serif = [
          "Sarasa Gothic C"
          "Sarasa Gothic J"
          "Sarasa Gothic K"
        ];

        sansSerif = [
          "Sarasa Gothic C"
          "Sarasa Gothic J"
          "Sarasa Gothic K"
        ];

        monospace = [
          "Dina"
          "Terminus"
          "cherry"
          "Iosevka Pure"
          "Iosevka Nerd Font"
          "JetBrainsMono Nerd Font"
        ];

        emoji = [
          "Siji"
          "Twitter Color Emoji"
        ];
      };
    };
  };

  programs = {
    sway.enable = true;
    sway.extraPackages = lib.mkForce [ ];

    zsh.enable = true;
    zsh.enableCompletion = false;
  };

  hardware.opengl.enable = true;
  hardware.opengl.driSupport32Bit = true;
  hardware.opengl.extraPackages = with pkgs; [ vaapiVdpau libvdpau-va-gl ];

  xdg.portal = {
    enable = true;
    gtkUsePortal = true;
    extraPortals = with pkgs; [
      xdg-desktop-portal-gtk
      xdg-desktop-portal-wlr
    ];
  };

  users.users = {
    zach = {
      isNormalUser = true;
      shell = pkgs.zsh;

      extraGroups = [
        "wheel"
        "audio"
        "networkmanager"
      ];
    };
  };

  # This value determines the NixOS release with which your system is to be
  # compatible, in order to avoid breaking some software such as database
  # servers. You should change this only after NixOS release notes say you
  # should.
  system.stateVersion = "22.05"; # Did you read the comment?
}