add server1 and change flatpak to make it works if not defined
nix flake show / show-flake (push) Successful in 40s

This commit is contained in:
smayzy
2025-08-08 22:00:52 +02:00
parent 5798a8bcb2
commit cacd136ca9
7 changed files with 161 additions and 31 deletions
+28
View File
@@ -0,0 +1,28 @@
{ 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";
}