nix-config/hosts/ctf-vm1/configuration.nix
smayzy 3bdcaa3d53
All checks were successful
nixos config pipeline / show-flake (push) Successful in 35s
nixos config pipeline / deploy (push) Successful in 35s
add base for ctf-vm1
2026-01-25 16:09:43 +01:00

23 lines
344 B
Nix

{ 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";
};
}