This commit is contained in:
Asaki Yuki 2026-04-13 19:05:08 +07:00
parent 60cc7b5929
commit da7459efbb
8 changed files with 27 additions and 42 deletions

25
options/default.nix Normal file
View file

@ -0,0 +1,25 @@
{ ... }:
{
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";
};
};
}