aboutsummaryrefslogblamecommitdiff
path: root/hosts/common/system/default.nix
blob: 3e546ffd8deef385781b71fb9bcd96ec95940375 (plain) (tree)
1
2
3
4
5
6
7
8
9
              
 

             
              
                  
                
                 
                  
                  
               
    
 
                                          
                                                                   
 
{ pkgs, ... }:

{
  imports = [
    ./boot.nix
    ./hardware.nix
    ./locale.nix
    ./network.nix
    ./security.nix
    ./software.nix
    ./users.nix
  ];

  # It's always useful to have bash around
  environment.shells = [ pkgs.bashInteractive pkgs.zsh pkgs.fish ];
}