nixos-config/machine/rainbow-resort/default.nix

44 lines
896 B
Nix
Raw Normal View History

2024-11-08 08:09:42 +00:00
{
nixos-config,
2024-11-10 21:20:25 +00:00
lib,
2024-11-08 08:09:42 +00:00
...
2024-11-09 14:02:26 +00:00
}:
{
2024-11-08 08:09:42 +00:00
networking.hostName = "rainbow-resort";
imports = [
"${nixos-config}/config"
./disko.nix
./hardware.nix
"${nixos-config}/config/graphical.nix"
2024-11-24 13:59:35 +00:00
#"${nixos-config}/config/graphical/plymouth.nix"
2024-11-08 08:09:42 +00:00
];
system.stateVersion = "24.11";
2024-11-24 13:59:35 +00:00
specialisation.sway = {
configuration.imports = [
{
nix.auto-update.specialisation = "sway";
isSway = true;
}
];
};
2024-11-10 21:20:25 +00:00
specialisation.sfw = {
configuration.imports = [
{
nix.auto-update.specialisation = "sfw";
isNSFW = lib.mkForce false;
}
];
};
2024-11-24 13:59:35 +00:00
specialisation.sway-sfw = {
configuration.imports = [
{
nix.auto-update.specialisation = "sway-sfw";
isSway = true;
isNSFW = lib.mkForce false;
}
];
};
2024-11-09 14:02:26 +00:00
home-manager.users.darkkirb.imports = [ ./home-manager.nix ];
2024-11-10 21:20:25 +00:00
isNSFW = true;
2024-11-08 08:09:42 +00:00
}