add base for ctf-vm1
nixos config pipeline / show-flake (push) Successful in 35s
nixos config pipeline / deploy (push) Successful in 35s

This commit is contained in:
smayzy
2026-01-25 16:09:43 +01:00
parent e76974c83c
commit 3bdcaa3d53
3 changed files with 30 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{ inputs, config, ... }:
{
imports = [
../common/common.nix
./hardware-configuration.nix
];
networking.hostName = "ctf-vm1";
home-manager = {
extraSpecialArgs = {
inherit inputs;
smayzy = config.smayzy;
};
users = {
smayzy = import ./home.nix;
};
backupFileExtension = "backup";
};
}
+7
View File
@@ -0,0 +1,7 @@
{ ... }:
{
imports = [
../common/home.nix
];
}