nix-config/hosts/laptop1/configuration.nix
smayzy a5f666c221
All checks were successful
nix flake show / show-flake (push) Successful in 1m5s
clean hosts dir & update
2025-07-23 18:39:39 +02:00

32 lines
486 B
Nix

{ inputs, config, ... }:
{
imports =
[
../common/common.nix
./hardware-configuration.nix
];
smayzy = {
laptop.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";
networking.hostName = "laptop1";
}