summaryrefslogtreecommitdiff
path: root/hardware/cez.nix
blob: cc2033167e375fd7c149a73821fe40d9aed1df0a (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;
  };
}