summaryrefslogtreecommitdiff
path: root/hardware/cez.nix
blob: ec74dc27a9f8fd4b7ede00d11432439925955b75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ config, ... }:

{
  imports = [
      ../features/wayland.nix
      ../features/kaysshfs.nix
      ../features/development.nix
  ];

  networking = {
    hostName = "cez";
    wireless.iwd.enable = true;
  };

  boot = {
    initrd.luks.reusePassphrases = true;
    consoleLogLevel = 3;
  };
}