2024-12-07 20:25:39 +00:00
|
|
|
{ lib, username, ... }:
|
2024-07-30 15:06:34 +01:00
|
|
|
{
|
2024-07-03 07:15:39 +01:00
|
|
|
imports = [
|
2024-11-28 07:07:50 +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
|
2024-09-29 12:36:58 +01:00
|
|
|
./services/xandikos.nix
|
2024-12-21 07:05:41 +00:00
|
|
|
# ./services/minecraft.nix
|
|
|
|
./services/satisfactory/default.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} = {
|
2024-11-26 06:27:57 +00:00
|
|
|
imports = [ ./home/emacs/default.nix ];
|
2024-12-10 14:57:32 +00:00
|
|
|
services.emacs.enable = false;
|
2024-10-17 06:17:24 +01:00
|
|
|
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-12-08 05:52:56 +00:00
|
|
|
networking.nameservers = lib.mkForce [ "0.0.0.0" ];
|
2024-07-03 07:15:39 +01:00
|
|
|
}
|