Include Hyprspace as a potential plugin

This commit is contained in:
DashieTM 2024-11-09 23:59:21 +01:00
parent a138b332a3
commit eb1cb1f297
6 changed files with 36 additions and 53 deletions

View file

@ -93,7 +93,7 @@
};
};
boot_params = lib.mkOption {
bootParams = lib.mkOption {
default = [ ];
example = [ "resume=something" ];
type = with lib.types; listOf str;
@ -150,7 +150,7 @@
'';
};
nixos-config-path = lib.mkOption {
nixosConfigPath = lib.mkOption {
default = "/home/${config.conf.username}/gits/nixos/.";
example = "yourpath/.";
type = lib.types.str;
@ -159,41 +159,6 @@
'';
};
nvim-colorscheme = lib.mkOption {
default = {
tokyonight = {
enable = true;
};
};
example = {
catppuccin = {
enable = true;
};
};
type = lib.types.attrs;
description = ''
nixvim colorscheme.
'';
};
nix_path = lib.mkOption {
default = "/home/${config.conf.username}/gits/nixos";
example = "yourpath";
type = lib.types.str;
description = ''
The default path for your configuration.
'';
};
kb_layout = lib.mkOption {
default = "dashie";
example = "us";
type = lib.types.str;
description = ''
The layout used in services.
'';
};
systemStateVersion = lib.mkOption {
example = "24.05";
default = "23.05";