2024-11-07 09:01:53 +00:00
|
|
|
{
|
|
|
|
nixos-config,
|
|
|
|
...
|
2024-11-09 14:02:26 +00:00
|
|
|
}:
|
|
|
|
{
|
2024-11-07 09:01:53 +00:00
|
|
|
networking.hostName = "thinkrac";
|
|
|
|
imports = [
|
|
|
|
"${nixos-config}/config"
|
|
|
|
./disko.nix
|
|
|
|
./hardware.nix
|
|
|
|
"${nixos-config}/config/networkmanager.nix"
|
|
|
|
"${nixos-config}/config/graphical.nix"
|
2024-11-24 13:59:35 +00:00
|
|
|
#"${nixos-config}/config/graphical/plymouth.nix"
|
2024-11-07 09:01:53 +00:00
|
|
|
];
|
|
|
|
system.stateVersion = "24.11";
|
2024-11-10 21:20:25 +00:00
|
|
|
specialisation.nsfw = {
|
|
|
|
configuration.imports = [
|
|
|
|
{
|
|
|
|
nix.auto-update.specialisation = "nsfw";
|
|
|
|
isNSFW = true;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2024-11-24 13:59:35 +00:00
|
|
|
specialisation.sway = {
|
|
|
|
configuration.imports = [
|
|
|
|
{
|
|
|
|
nix.auto-update.specialisation = "sway";
|
|
|
|
isSway = true;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
specialisation.sway-nsfw = {
|
|
|
|
configuration.imports = [
|
|
|
|
{
|
|
|
|
nix.auto-update.specialisation = "sway-nsfw";
|
|
|
|
isSway = true;
|
|
|
|
isNSFW = true;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2024-11-07 09:01:53 +00:00
|
|
|
}
|