26 lines
701 B
Nix
26 lines
701 B
Nix
{
|
|
disko,
|
|
home-manager,
|
|
lib,
|
|
inTester,
|
|
self,
|
|
rust-overlay,
|
|
nix-vscode-extensions,
|
|
...
|
|
}:
|
|
with lib;
|
|
{
|
|
imports = [
|
|
./riscv.nix
|
|
./nix
|
|
./environment/impermanence.nix
|
|
./secrets/sops.nix
|
|
disko.nixosModules.default
|
|
./hydra/build-server.nix
|
|
"${home-manager}/nixos"
|
|
];
|
|
options.isGraphical = mkEnableOption "Whether or not this configuration is a graphical install";
|
|
options.isInstaller = mkEnableOption "Whether or not this configuration is an installer and has no access to secrets";
|
|
options.isNSFW = mkEnableOption "Whether or not this configuration is NSFW";
|
|
options.isIntelGPU = mkEnableOption "Whether or not this configuration uses an Intel GPU";
|
|
}
|