summaryrefslogblamecommitdiff
path: root/hardware/cez.nix
blob: b3f0744af9728a819c3539b737c9c677a4695aa0 (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";
    wireless.iwd.enable = true;
  };

  sound.enable = true;
  services.pipewire = {
    enable = true;
    pulse.enable = true;
  };
}