blob: 2a40a4444e1fb0326be95e4ca0b1ae0946c214b2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{ config, lib, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
./modules/ssh.nix
./modules/user.nix
./modules/minecraft-server.nix
./modules/webserver.nix
./modules/syncthing.nix
./modules/mailserver.nix
./modules/mealie.nix
./modules/polaris.nix
./modules/caldav.nix
./modules/vaultwarden.nix
./modules/monit.nix
];
networking.hostName = "nixos";
time.timeZone = "Europe/Berlin";
networking.firewall.enable = true;
environment.systemPackages = with pkgs; [
git
lazygit
neovim
htop
];
system.copySystemConfiguration = true;
system.stateVersion = "24.11";
}
|