nix-config/hosts/desktop1/configuration.nix
smayzy 39ab82ae47
All checks were successful
nix flake show / show-flake (push) Successful in 26s
reinstall
2025-07-27 17:12:26 +02:00

33 lines
526 B
Nix

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