Squash bugs and make aspi config work

This commit is contained in:
2025-04-23 09:59:02 +02:00
parent 532bbe8675
commit 7db055ca27
27 changed files with 163 additions and 152 deletions

View File

@ -3,4 +3,6 @@
monitors = import ./monitors.nix;
terminal = import ./terminal.nix;
colors = import ./colors.nix;
hostname = import ./hostname.nix;
non-nixos = import ./non-nixos.nix;
}

View File

@ -0,0 +1,12 @@
{
lib,
...
}:
let
inherit (lib) types mkOption;
in
{
options.hostName = mkOption {
type = types.str;
};
}

View File

@ -0,0 +1,12 @@
{
lib,
...
}:
let
inherit (lib) types mkOption;
in
{
options.is-nixos = mkOption {
type = types.bool;
};
}