Compare commits
1 commit
dca26699aa
...
6eaf428a02
Author | SHA1 | Date | |
---|---|---|---|
6eaf428a02 |
3 changed files with 8 additions and 2 deletions
|
@ -46,7 +46,7 @@
|
||||||
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 = { ... }: {
|
clean = {}: {
|
||||||
config = {
|
config = {
|
||||||
valhalla = {
|
valhalla = {
|
||||||
hostname = "Falcon";
|
hostname = "Falcon";
|
||||||
|
|
|
@ -44,6 +44,12 @@ 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";
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
components = [ "Logitech G903" ];
|
components = [ "Logitech G903" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems.diskSetup.devices.OS.name = "nvme0n1";
|
partition.os.deviceName = "nvme0n1";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue