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