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

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