2024-10-17 06:17:24 +01:00
|
|
|
{ username, ... }:
|
2024-07-30 15:06:34 +01:00
|
|
|
{
|
2024-07-03 07:15:39 +01:00
|
|
|
imports = [
|
2024-10-08 07:00:39 +01: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/minecraft.nix
|
|
|
|
./services/nix-serve.nix
|
2024-09-14 11:58:03 +01:00
|
|
|
./services/satisfactory/default.nix
|
2024-07-03 07:15:39 +01:00
|
|
|
./services/sshd.nix
|
|
|
|
./services/syncthing.nix
|
2024-09-29 12:36:58 +01:00
|
|
|
./services/xandikos.nix
|
2024-07-03 07:15:39 +01:00
|
|
|
];
|
|
|
|
boot.loader = {
|
|
|
|
systemd-boot.enable = true;
|
|
|
|
efi.canTouchEfiVariables = true;
|
|
|
|
};
|
2024-10-17 06:17:24 +01:00
|
|
|
home-manager.users.${username} = {
|
|
|
|
home.stateVersion = "23.05";
|
|
|
|
};
|
2024-10-25 11:25:34 +01:00
|
|
|
system.stateVersion = "23.05";
|
2024-07-03 07:15:39 +01:00
|
|
|
users.mutableUsers = false;
|
2024-07-21 18:40:13 +01:00
|
|
|
hardware.bluetooth.enable = true;
|
2024-07-03 07:15:39 +01:00
|
|
|
}
|