summaryrefslogtreecommitdiff
path: root/hardware/cez.nix
blob: dd46c86c0d4ac78655433b3016b500c6a3cf1406 (plain) (blame)
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
{ config, ... }:

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

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

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

  sound = {
    enable = true;
    extraConfig = ''
      defaults.pcm.card 1
      defaults.ctl.card 1
    '';
  };
  services.pipewire = {
    enable = true;
    pulse.enable = true;
  };
}