From 61651d2bc0ae8a95204f63e9142800763e6d364b Mon Sep 17 00:00:00 2001 From: GarandPLG Date: Sun, 28 Sep 2025 16:52:01 +0200 Subject: [PATCH] Add Iotas and related language dictionaries --- modules/core/packages/clients.nix | 1 + modules/core/packages/tools.nix | 4 +++ modules/home/bash.nix | 6 ++-- modules/home/default.nix | 1 - modules/home/htop.nix | 46 ------------------------------- modules/home/hyprland/binds.nix | 2 +- 6 files changed, 9 insertions(+), 51 deletions(-) delete mode 100644 modules/home/htop.nix diff --git a/modules/core/packages/clients.nix b/modules/core/packages/clients.nix index d2e976d..cd4d863 100644 --- a/modules/core/packages/clients.nix +++ b/modules/core/packages/clients.nix @@ -10,6 +10,7 @@ tutanota-desktop anki-bin onlyoffice-bin + iotas # Cloud nextcloud-client # Browsers diff --git a/modules/core/packages/tools.nix b/modules/core/packages/tools.nix index 8e0927d..2db413d 100644 --- a/modules/core/packages/tools.nix +++ b/modules/core/packages/tools.nix @@ -42,5 +42,9 @@ libnotify v4l-utils kronometer + # Language dicts for Iotas + hunspell + hunspellDicts.pl_PL + hunspellDicts.en_US ]; } diff --git a/modules/home/bash.nix b/modules/home/bash.nix index 0edeae0..40d70d6 100644 --- a/modules/home/bash.nix +++ b/modules/home/bash.nix @@ -2,8 +2,8 @@ _: { programs.bash = { enable = true; enableCompletion = true; - initExtra = '' - fastfetch - ''; + # initExtra = '' + # fastfetch + # ''; }; } diff --git a/modules/home/default.nix b/modules/home/default.nix index 2bddf68..b29b7ed 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -24,7 +24,6 @@ in ./gh.nix ./git.nix ./gtk.nix - ./htop.nix ./kitty.nix ./lazygit.nix ./librewolf.nix diff --git a/modules/home/htop.nix b/modules/home/htop.nix deleted file mode 100644 index 77b8e22..0000000 --- a/modules/home/htop.nix +++ /dev/null @@ -1,46 +0,0 @@ -{ config, ... }: -{ - programs.htop = { - enable = true; - settings = { - color_scheme = 6; - cpu_count_from_one = 0; - delay = 15; - fields = with config.lib.htop.fields; [ - PID - USER - PRIORITY - NICE - M_SIZE - M_RESIDENT - M_SHARE - STATE - PERCENT_CPU - PERCENT_MEM - TIME - COMM - ]; - highlight_base_name = 1; - highlight_megabytes = 1; - highlight_threads = 1; - } - // ( - with config.lib.htop; - leftMeters [ - (bar "AllCPUs2") - (bar "Memory") - (bar "Swap") - (text "Zram") - ] - ) - // ( - with config.lib.htop; - rightMeters [ - (text "Tasks") - (text "LoadAverage") - (text "Uptime") - (text "Systemd") - ] - ); - }; -} diff --git a/modules/home/hyprland/binds.nix b/modules/home/hyprland/binds.nix index 91ee47f..28aa112 100644 --- a/modules/home/hyprland/binds.nix +++ b/modules/home/hyprland/binds.nix @@ -10,7 +10,6 @@ in # APLIKACJE - GŁÓWNE # ============================================================================= "$modifier, A, exec, anki" - # "$modifier, B, exec, btop" "$modifier, B, exec, bitwarden" "$modifier, C, exec, chromium" "$modifier, D, exec, discord" @@ -41,6 +40,7 @@ in # ============================================================================= # APLIKACJE - Z ALT I CONTROL # ============================================================================= + "$modifier ALT, B, exec, btop" "$modifier ALT, M, exec, dex ${desktopEntriesPath}/mastodon.desktop" "$modifier ALT, S, exec, slack" "$modifier CONTROL, M, exec, mattermost-desktop"