Compare commits
2 commits
6eaf428a02
...
dca26699aa
Author | SHA1 | Date | |
---|---|---|---|
dca26699aa | |||
f6e5a3e25b |
3 changed files with 17 additions and 7 deletions
16
flake.nix
16
flake.nix
|
@ -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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -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";
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
components = [ "Logitech G903" ];
|
components = [ "Logitech G903" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
partition.os.deviceName = "nvme0n1";
|
fileSystems.diskSetup.devices.OS.name = "nvme0n1";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue