33 lines
526 B
Nix
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";
|
|
|
|
}
|