From f9157addcb2e8aa57dc79957391911a9d9f2556c Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Sun, 16 Feb 2025 21:00:05 -0600 Subject: [PATCH] I think dragon is building --- lib/modules/home/default.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/lib/modules/home/default.nix b/lib/modules/home/default.nix index ec00bc7..2bf299d 100644 --- a/lib/modules/home/default.nix +++ b/lib/modules/home/default.nix @@ -38,12 +38,9 @@ in options = { lyte = { shell = { - enable = - lib.mkEnableOption builtins.trace "looked at lyte options" - "Enable home-manager shell configuration for the user"; - }; - desktop = { - enable = lib.mkEnableOption "Enable home-manager desktop configuration for the user"; + enable = lib.mkEnableOption ( + builtins.trace "looked at lyte options" "Enable home-manager shell configuration for the user" + ); }; }; }; @@ -335,7 +332,7 @@ in # include.path = local.gitconfig - gpg.format = "ssh"; + # gpg.format = "ssh"; log.date = "local"; init.defaultBranch = "main"; @@ -1182,7 +1179,7 @@ in ... }: { - config = lib.mkIf (config.lyte.shell && lib.strings.hasSuffix "linux" pkgs.system) { + config = lib.mkIf (config.lyte.shell.enable && (lib.strings.hasSuffix "linux" pkgs.system)) { programs.fish = { shellAliases = { disks = "df -h && lsblk";