idk
This commit is contained in:
parent
da7459efbb
commit
cf260a566e
6 changed files with 2 additions and 2 deletions
25
options/system/default.nix
Normal file
25
options/system/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ lib, ... }:
|
||||
{
|
||||
imports = [
|
||||
./programs.nix
|
||||
./file.nix
|
||||
./environment.nix
|
||||
./programs.nix
|
||||
./hardware.nix
|
||||
];
|
||||
|
||||
options.device = {
|
||||
flatpak.enable = lib.mkEnableOption "flatpak";
|
||||
flake-name = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "desktop";
|
||||
description = "Flake name for quick rebuild";
|
||||
};
|
||||
|
||||
cursors = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "aemeath";
|
||||
description = "Cursor theme to use for the desktop";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in a new issue