summaryrefslogtreecommitdiff
path: root/modules/server/default.nix
blob: c5df823c77a3be86b75eea5d68f6ed49da88870a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ pkgs, ... }:
{
  imports = [
    ../core/networking/tailscale.nix
    ../core/security/sops.nix
    ../core/nix
    ./networking
    ./sops.nix
    ./system.nix
    ./users.nix
    ./virtualisation.nix
  ];

  environment.systemPackages = with pkgs; [
    fastfetch
    vim
  ];
}