30 lines
682 B
Nix
30 lines
682 B
Nix
{ username, ... }:
|
|
{
|
|
imports = [
|
|
./services/adguardhome.nix
|
|
./services/caddy.nix
|
|
./services/forgejo.nix
|
|
./services/grafana.nix
|
|
./services/home-assistant.nix
|
|
./services/minecraft.nix
|
|
./services/nix-serve.nix
|
|
./services/satisfactory/default.nix
|
|
./services/sshd.nix
|
|
./services/syncthing.nix
|
|
./services/xandikos.nix
|
|
];
|
|
boot.loader = {
|
|
systemd-boot.enable = true;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
home-manager.users.${username} = {
|
|
home.stateVersion = "23.05";
|
|
};
|
|
system = {
|
|
stateVersion = "23.05";
|
|
autoUpgrade.operation = "switch";
|
|
};
|
|
users.mutableUsers = false;
|
|
hardware.bluetooth.enable = true;
|
|
}
|