nix-config/hosts/ctf-vm1/configuration.nix
smayzy e55a047241
All checks were successful
nixos config pipeline / show-flake (push) Successful in 34s
nixos config pipeline / deploy (push) Successful in 36s
disable grub for ctf-vm1
2026-01-25 19:31:56 +01:00

25 lines
375 B
Nix

{ inputs, config, ... }:
{
imports = [
../common/common.nix
./hardware-configuration.nix
];
networking.hostName = "ctf-vm1";
smayzy.grub.disable = true;
home-manager = {
extraSpecialArgs = {
inherit inputs;
smayzy = config.smayzy;
};
users = {
smayzy = import ./home.nix;
};
backupFileExtension = "backup";
};
}