summaryrefslogtreecommitdiff
path: root/modules/desktop/plasma/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-05-04 17:09:32 -0400
committerseth <[email protected]>2023-05-04 17:09:32 -0400
commit94e2d64cbbb4c1901bbd7466f12662dba28005da (patch)
treeed0eb80c62f75b3ec5f302249dab60b3a1726ed2 /modules/desktop/plasma/default.nix
parent9937a252dec0f33437a396e0f6c43ca456cf5b92 (diff)
modules: prefix with getchoo
Diffstat (limited to 'modules/desktop/plasma/default.nix')
-rw-r--r--modules/desktop/plasma/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/desktop/plasma/default.nix b/modules/desktop/plasma/default.nix
index 7434f52..84960f3 100644
--- a/modules/desktop/plasma/default.nix
+++ b/modules/desktop/plasma/default.nix
@@ -4,13 +4,13 @@
pkgs,
...
}: let
- cfg = config.desktop.plasma;
+ cfg = config.getchoo.desktop.plasma;
inherit (lib) mkEnableOption mkIf;
in {
- options.desktop.plasma.enable = mkEnableOption "enable plasma";
+ options.getchoo.desktop.plasma.enable = mkEnableOption "enable plasma";
config = mkIf cfg.enable {
- desktop.enable = true;
+ getchoo.desktop.enable = true;
environment.systemPackages = with pkgs; [pinentry-qt];