2025-02-01 11:33:45 +00:00
|
|
|
{ lib, username, ... }:
|
2024-07-30 15:06:34 +01:00
|
|
|
{
|
2024-07-03 07:15:39 +01:00
|
|
|
imports = [
|
2025-02-01 11:35:17 +00:00
|
|
|
# ./services/adguardhome.nix
|
2024-07-03 07:15:39 +01:00
|
|
|
./services/caddy.nix
|
|
|
|
./services/forgejo.nix
|
|
|
|
./services/grafana.nix
|
2024-07-21 18:40:13 +01:00
|
|
|
./services/home-assistant.nix
|
2024-07-03 07:15:39 +01:00
|
|
|
./services/nix-serve.nix
|
|
|
|
./services/sshd.nix
|
|
|
|
./services/syncthing.nix
|
2025-01-17 11:46:00 +00:00
|
|
|
./services/webdav.nix
|
2024-09-29 12:36:58 +01:00
|
|
|
./services/xandikos.nix
|
2024-12-21 07:05:41 +00:00
|
|
|
# ./services/minecraft.nix
|
2025-01-11 15:35:13 +00:00
|
|
|
# ./services/satisfactory/default.nix
|
2024-07-03 07:15:39 +01:00
|
|
|
];
|
|
|
|
boot.loader = {
|
|
|
|
systemd-boot.enable = true;
|
|
|
|
efi.canTouchEfiVariables = true;
|
|
|
|
};
|
2025-02-01 11:26:35 +00:00
|
|
|
system = {
|
|
|
|
stateVersion = "23.05";
|
|
|
|
autoUpgrade = {
|
|
|
|
enable = true;
|
|
|
|
persistent = true;
|
|
|
|
allowReboot = false;
|
2025-02-01 11:33:45 +00:00
|
|
|
flake = "git+https://git.xenia.me.uk/pixelifytica/nixos.git?ref=main";
|
2025-02-01 11:26:35 +00:00
|
|
|
dates = "02:00";
|
|
|
|
flags = [
|
|
|
|
"--option"
|
|
|
|
"extra-binary-caches"
|
|
|
|
"https://nix.xenia.me.uk"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2024-07-03 07:15:39 +01:00
|
|
|
users.mutableUsers = false;
|
2024-07-21 18:40:13 +01:00
|
|
|
hardware.bluetooth.enable = true;
|
2024-12-08 05:52:56 +00:00
|
|
|
networking.nameservers = lib.mkForce [ "0.0.0.0" ];
|
2025-02-08 06:32:03 +00:00
|
|
|
home-manager.users.${username} = {
|
|
|
|
imports = [ ./home/emacs/default.nix ];
|
|
|
|
services.emacs.enable = false;
|
|
|
|
home.stateVersion = "23.05";
|
|
|
|
};
|
2024-07-03 07:15:39 +01:00
|
|
|
}
|