blob: a7a7270762c8df7c711c65b4d7b0984d9f252823 (
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
|
{ 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
];
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";
}
|