Files
nix-config/hosts/laptop2/configuration.nix
T
smayzy 76168f8b05
nixos config pipeline / show-flake (push) Successful in 48s
nixos config pipeline / deploy (push) Successful in 57s
add ardour to laptop2
2026-09-21 00:45:50 +02:00

31 lines
499 B
Nix

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