From e62d5505293a7c26d33fd60130220f2dea920515 Mon Sep 17 00:00:00 2001 From: adikro Date: Sun, 28 Dec 2025 10:22:13 +0100 Subject: nh clean fixes plus some cli stuff --- hm/conf/xdg-dirs.nix | 4 ++++ hm/shell/cli.nix | 15 ++++++++++----- hm/soft/browser.nix | 18 ++++++++++++++++++ hm/soft/nixcord.nix | 7 +++---- 4 files changed, 35 insertions(+), 9 deletions(-) (limited to 'hm') diff --git a/hm/conf/xdg-dirs.nix b/hm/conf/xdg-dirs.nix index c6cf03b..d779dba 100644 --- a/hm/conf/xdg-dirs.nix +++ b/hm/conf/xdg-dirs.nix @@ -34,6 +34,8 @@ in XDG_MEDIA_DIR = "${toString cfg.mediaPath}"; XDG_SS_DIR = "${toString cfg.mediaPath}/pics/ss"; XDG_CLIPS_DIR = "${toString cfg.mediaPath}/vids/clips"; + XDG_MOVIES_DIR = "${toString cfg.mediaPath}/movies"; + XDG_ANIME_DIR = "${toString cfg.mediaPath}/anime"; XDG_ARCHIVE_DIR = "${toString cfg.mediaPath}/archive"; }; }; @@ -43,6 +45,8 @@ in XDG_MEDIA_DIR = "${toString cfg.mediaPath}"; XDG_SS_DIR = "${toString cfg.mediaPath}/pics/ss"; XDG_CLIPS_DIR = "${toString cfg.mediaPath}/vids/clips"; + XDG_MOVIES_DIR = "${toString cfg.mediaPath}/movies"; + XDG_ANIME_DIR = "${toString cfg.mediaPath}/anime"; XDG_ARCHIVE_DIR = "${toString cfg.mediaPath}/archive"; }; }; diff --git a/hm/shell/cli.nix b/hm/shell/cli.nix index fa4f3fc..c20b9c2 100644 --- a/hm/shell/cli.nix +++ b/hm/shell/cli.nix @@ -5,9 +5,10 @@ in { options.hm.shell.cli.enable = lib.mkEnableOption "modern cli tools"; config = lib.mkIf cfg.enable { - programs.zoxide.enable = true; - programs.zoxide.options = [ "--cmd cd" ]; - + programs.zoxide = { + enable = true; + options = [ "--cmd cd" ]; + }; programs.bat = { enable = true; config.theme = "gruvbox-dark"; @@ -18,10 +19,15 @@ in programs.fd.enable = true; programs.ripgrep.enable = true; programs.yazi.enable = true; - programs.btop.enable = true; programs.fastfetch.enable = true; programs.direnv.enable = true; + programs.jq.enable = true; + programs.nix-your-shell = { + enable = true; + enableFishIntegration = true; + nix-output-monitor.enable = true; + }; home.packages = with pkgs; [ srm @@ -30,7 +36,6 @@ in chafa hexyl procs - jq yq-go tldr ]; diff --git a/hm/soft/browser.nix b/hm/soft/browser.nix index f1dd97f..e46e482 100644 --- a/hm/soft/browser.nix +++ b/hm/soft/browser.nix @@ -11,6 +11,24 @@ in (lib.mkIf cfg.librewolf.enable { programs.librewolf = { enable = true; + profiles = { + main = { + name = "main"; + # bookmarks.configFile = ./bookmarks; + extensions = { + + }; + search = { + + }; + settings = { + + }; + }; + }; + settings = { + "ui.key.menuAccessKeyFocuses" = false; + }; }; }) diff --git a/hm/soft/nixcord.nix b/hm/soft/nixcord.nix index adbdc58..c948a4d 100644 --- a/hm/soft/nixcord.nix +++ b/hm/soft/nixcord.nix @@ -45,14 +45,13 @@ in betterRoleContext.enable = true; betterSettings.enable = true; betterUploadButton.enable = true; - betterUserArea.enable = true; + betterUserArea = { enable = true; alwaysShowUsername = false; }; biggerStreamPreview.enable = true; - bypassPinPrompt.enable = true; + bypassPinPrompt.enable = true; callTimer.enable = true; cleanChannelName.enable = true; components.enable = true; copyFileContents.enable = true; - crashHandler.enable = true; customTimestamps.enable = true; disableCallIdle.enable = true; disableDeepLinks.enable = true; @@ -148,7 +147,7 @@ in voiceMessages.enable = true; voiceRejoin.enable = true; volumeBooster.enable = true; - webScreenShareFixes.enable = true; + # webScreenShareFixes.enable = true; whoReacted.enable = true; whosWatching.enable = true; youtubeAdblock.enable = true; -- cgit v1.3