about summary refs log blame commit diff stats
path: root/sys/default.nix
blob: 68a2489228b879cbfe88f0b85b01519f5be5668a (plain) (tree)
1
2
3
4
5
6
7
8
9
             
             
                                              
          
           
                   
          
                  
              
                  
              
            
             
             
            
           
             
           
          
               
           
              
    
                                                         
                 
                                     
    
 
{lib, ...}: {
  imports = [
    #./nixpkgs already at flake level imported
    ./boot
    ./disks
    ./documentation
    ./font
    ./git_revision
    ./hardware
    ./impermanence
    ./libvirtd
    ./locale
    ./network
    ./options
    ./polkit
    ./power
    ./secrets
    ./sound
    ./svcs
    ./tempfiles
    ./users
    ./waydroid
  ];
  # remove all the bloat, which NixOS installs by default
  environment = {
    defaultPackages = lib.mkForce [];
  };
}