summaryrefslogblamecommitdiff
path: root/hardware/cez.nix
blob: dd46c86c0d4ac78655433b3016b500c6a3cf1406 (plain) (tree)
1
2
3
4
5
6
7
8
9


                
             


                               
    
 




                                        

                     
                               


                               


                    

                         

       


                        
    
 
{ 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;
  };
}