Squash bugs and make aspi config work
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
12
modules/home-manager/hostname.nix
Normal file
12
modules/home-manager/hostname.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
let
|
||||
inherit (lib) types mkOption;
|
||||
in
|
||||
{
|
||||
options.hostName = mkOption {
|
||||
type = types.str;
|
||||
};
|
||||
}
|
12
modules/home-manager/non-nixos.nix
Normal file
12
modules/home-manager/non-nixos.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
let
|
||||
inherit (lib) types mkOption;
|
||||
in
|
||||
{
|
||||
options.is-nixos = mkOption {
|
||||
type = types.bool;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user