mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-12-21 19:24:15 +00:00
fix profile recursion
This commit is contained in:
parent
b35e7fbcd2
commit
d74ba82a72
1 changed files with 74 additions and 73 deletions
|
@ -2,9 +2,26 @@
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.sconfig.profile;
|
cfg = config.sconfig.profile;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.sconfig.profile = mkOption {
|
||||||
|
type = types.enum [ "server" "desktop" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkMerge [
|
||||||
|
|
||||||
|
|
||||||
desktop-config = {
|
(mkIf (cfg == "server") {
|
||||||
|
services.openssh.enable = true;
|
||||||
|
documentation.nixos.enable = false;
|
||||||
|
nix.gc = {
|
||||||
|
automatic = true;
|
||||||
|
options = "--delete-older-than 30d";
|
||||||
|
};
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
(mkIf (cfg == "desktop") {
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
brave
|
brave
|
||||||
gimp
|
gimp
|
||||||
|
@ -61,24 +78,8 @@ let
|
||||||
boot.loader.timeout =
|
boot.loader.timeout =
|
||||||
if config.boot.loader.systemd-boot.enable
|
if config.boot.loader.systemd-boot.enable
|
||||||
then null else lib.mkOverride 9999 99;
|
then null else lib.mkOverride 9999 99;
|
||||||
};
|
})
|
||||||
|
|
||||||
|
|
||||||
server-config = {
|
];
|
||||||
services.openssh.enable = true;
|
|
||||||
documentation.nixos.enable = false;
|
|
||||||
nix.gc = {
|
|
||||||
automatic = true;
|
|
||||||
options = "--delete-older-than 30d";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.sconfig.profile = mkOption {
|
|
||||||
type = types.enum [ "server" "desktop" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
config = { inherit desktop server; }."${cfg}-config";
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue