Compare commits

...

2 commits

Author SHA1 Message Date
dca26699aa Fix outdated settings 2024-12-16 13:35:08 +01:00
f6e5a3e25b Create a clean profile 2024-12-16 13:35:07 +01:00
3 changed files with 17 additions and 7 deletions

View file

@ -46,6 +46,22 @@
DerGeret = import ./profiles/machines/manuel/DerGeret/Arch/config.nix; DerGeret = import ./profiles/machines/manuel/DerGeret/Arch/config.nix;
ManuSurface = import ./profiles/machines/manuel/ManuSurface/Arch/config.nix; ManuSurface = import ./profiles/machines/manuel/ManuSurface/Arch/config.nix;
server = import ./profiles/machines/manuel/server.nix; server = import ./profiles/machines/manuel/server.nix;
clean = { ... }: {
config = {
valhalla = {
hostname = "Falcon";
windows = {
users.LocalAdmin = {
groups = [ "Administrators" ];
programs.oh-my-posh.theme.source = ./profiles/users/manuel/manuel.omp.json;
};
};
software.essential = true;
};
};
};
}; };
}; };
} }

View file

@ -44,12 +44,6 @@ let
"/dev/${config.name}"; "/dev/${config.name}";
}; };
deviceScript = mkOption {
type = types.str;
description = "A command for loading the device path into the device variable";
internal = true;
};
deviceVariable = mkOption { deviceVariable = mkOption {
type = types.str; type = types.str;
description = "The name of the variable holding the name of the disk"; description = "The name of the variable holding the name of the disk";

View file

@ -14,7 +14,7 @@
components = [ "Logitech G903" ]; components = [ "Logitech G903" ];
}; };
partition.os.deviceName = "nvme0n1"; fileSystems.diskSetup.devices.OS.name = "nvme0n1";
}; };
}; };
} }