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

 
             


                           
    
 


                                        
                                               

    

                     
                               


                               


                    

                         

       


                        
    
 
{ pkgs, ... }:

{
  imports = [
    ../modules/wayland.nix
    ../modules/kaysshfs.nix
    ../modules/dev.nix
  ];

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

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