summary refs log tree commit diff stats
path: root/configuration.nix
blob: 7f5573784006b80ce8b990480c243b35adc93500 (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
37
38
39
40
41
42
43
44
{ config, lib, pkgs, ... }:

{
  imports =
    [
      ./hardware-configuration.nix
      ./modules/ssh.nix
      ./modules/user.nix
      ./modules/git/git.nix
      ./modules/git/cgit.nix
      ./modules/minecraft-server.nix
      ./modules/webserver.nix
      ./modules/syncthing.nix
      ./modules/mailserver.nix
      ./modules/matrix/matrix.nix
      ./modules/mealie.nix
      ./modules/polaris.nix
      ./modules/caldav.nix
      ./modules/vaultwarden.nix
      ./modules/pdf.nix
      ./modules/atuin.nix
      #./modules/silverbullet.nix Commented out: silverbullet 0.9 doesn't work with deno 2+
      ./modules/monit.nix
      ./modules/shopping-list.nix
      ./modules/glance.nix
    ];

  networking.hostName = "nixos";
  time.timeZone = "Europe/Berlin";
  networking.firewall.enable = true;

  environment.systemPackages = with pkgs; [
    jq
    git
    lazygit

    neovim
  ];

  system.copySystemConfiguration = true;
  system.stateVersion = "24.11";

}