nix-config/hosts/server1/configuration.nix
smayzy cacd136ca9
All checks were successful
nix flake show / show-flake (push) Successful in 40s
add server1 and change flatpak to make it works if not defined
2025-08-08 22:00:52 +02:00

29 lines
423 B
Nix

{ inputs, config, ... }:
{
imports = [
../common/common.nix
./hardware-configuration.nix
];
networking.hostName = "server1";
smayzy = {
server.enable = true;
};
home-manager = {
extraSpecialArgs = {
inherit inputs;
smayzy = config.smayzy;
};
users = {
smayzy = import ./home.nix;
};
backupFileExtension = "backup";
};
system.stateVersion = "24.11";
}