summaryrefslogtreecommitdiff
path: root/hardware/cez.nix
blob: 3d7bcae80d9cbddb5bb22828149dc00345ed5d89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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;
  };
}