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

             
              
                  
                 
                  
                  
               
    
 
                                          
                                                                   
 
{ pkgs, ... }:

{
  imports = [
    ./boot.nix
    ./hardware.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 ];
}