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

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