aboutsummaryrefslogblamecommitdiff
path: root/hosts/common/system/default.nix
blob: 6fc06511c2e0d5afd27c75e1adbaeabe4e966a51 (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
  ];

  console = {
    font = "Lat2-Terminus16";
    keyMap = "us";
  };

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