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


                              
 
             
                                

                         
                           
                         


                    


                                        
                                               
    
 


                    

                         

       
 
              



                          



                                              
                               
    
 
{ config, pkgs, ... }:

let
  user = config.userdata.user;
in
{
  imports = [
    ./hardware-configuration.nix
    ./modules/wayland.nix
    ./modules/sshfs.nix
    ./modules/wireguard.nix
    ./modules/network.nix
    ../../common.nix
  ];

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

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

  services = {
    pipewire = {
      enable = true;
      pulse.enable = true;
    };
    openssh = {
      enable = true;
      settings.PasswordAuthentication = false;
    };
    getty.autologinUser = user;
  };
}