Move options to seperate modules so they can be shared between home manager and nixos
This commit is contained in:
14
modules/options/system.nix
Normal file
14
modules/options/system.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
{ lib
|
||||
, pkgs
|
||||
, config
|
||||
, ...
|
||||
}:
|
||||
|
||||
with lib; {
|
||||
options.simmer.system = mkOption {
|
||||
description = "System architecture";
|
||||
type = types.str;
|
||||
default = "x86_64-linux";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user