nix-config/hosts/laptop1/configuration.nix
smayzy e1daf39fb5
All checks were successful
nixos config pipeline / show-flake (push) Successful in 25s
nixos config pipeline / deploy (push) Successful in 46s
add tas to laptop1
2025-11-06 16:51:01 +01:00

32 lines
497 B
Nix

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