nix-config/hosts/laptop1/configuration.nix
smayzy 0210a58bf5
Some checks failed
nixos config pipeline / show-flake (push) Successful in 30s
nixos config pipeline / deploy (push) Has been cancelled
update | fix wallpaper | remove adb | disable tas
2026-01-17 11:34:13 +01:00

31 lines
474 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";
}