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