refactor(options): move options to global scope

This commit is contained in:
2026-02-08 16:07:19 +01:00
parent 5cda61783c
commit 74a32efdd0
4 changed files with 3 additions and 5 deletions
-2
View File
@@ -1,7 +1,5 @@
{
imports = [
../options.nix
./git.nix
./fish.nix
./nixvim
-2
View File
@@ -1,7 +1,5 @@
{
imports = [
../options.nix
./fish.nix
./firefox.nix
./hyprland.nix
-18
View File
@@ -1,18 +0,0 @@
{
lib,
...
}:
{
options.kekleo = {
graphical = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Enable GUI features and programs";
};
neovim = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Enable neovim";
};
};
}