big refactor
This commit is contained in:
commit
76d68230f6
81 changed files with 3065 additions and 0 deletions
10
options/common/default.nix
Normal file
10
options/common/default.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{ lib, ... }: {
|
||||
options.device = {
|
||||
flatpak.enable = lib.mkEnableOption "flatpak";
|
||||
flake-name = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "desktop";
|
||||
description = "Flake name for quick rebuild";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in a new issue