aboutsummaryrefslogtreecommitdiff
path: root/hosts/common/system/default.nix
blob: 3e546ffd8deef385781b71fb9bcd96ec95940375 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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 ];
}