diff --git a/README.md b/README.md index 8826723..7f877a7 100644 --- a/README.md +++ b/README.md @@ -121,6 +121,7 @@ No Idea at this point *heavily* inspired by https://git.jacekpoz.pl/jacekpoz/niksos.git ! Sioodmy: https://github.com/sioodmy/dotfiles Heinrik Lissner: https://github.com/hlissner/dotfiles/ +Fufexan: https://github.com/fufexan Lokasku: https://github.com/lokasku/nix-config NotAShelf: https://github.com/notashelf/Nyx Wallpapers: https://github.com/zhichaoh/catppuccin-wallpapers?tab=readme-ov-file diff --git a/hosts/vali/temperance/configuration.nix b/hosts/vali/temperance/configuration.nix index 5a71596..5967a6e 100644 --- a/hosts/vali/temperance/configuration.nix +++ b/hosts/vali/temperance/configuration.nix @@ -37,7 +37,7 @@ }; discord.enable = true; firefox.enable = true; - spotify.enable = true; + # spotify.enable = true; zathura.enable = true; zellij.enable = true; terminals = { diff --git a/hosts/vali/temperance/programs.nix b/hosts/vali/temperance/programs.nix index 3c7c1f6..9af861f 100644 --- a/hosts/vali/temperance/programs.nix +++ b/hosts/vali/temperance/programs.nix @@ -82,7 +82,6 @@ in { scc scummvm sherlock - shotwell signal-desktop-beta smartmontools teamspeak_client diff --git a/modules/editors/helix.nix b/modules/editors/helix.nix index 2bef669..ad6c09a 100644 --- a/modules/editors/helix.nix +++ b/modules/editors/helix.nix @@ -13,6 +13,7 @@ in { home-manager.users.${username} = { programs.helix = { enable = true; + # thanks fuf, this is great! package = inputs'.helix.packages.default.overrideAttrs (previousAttrs: { makeWrapperArgs = with pkgs; previousAttrs.makeWrapperArgs @@ -32,7 +33,6 @@ in { ]; }); settings = { - # theme = "catppuccin_mocha"; editor = { indent-guides.render = true; lsp.display-inlay-hints = true; diff --git a/modules/gui/foot.nix b/modules/gui/foot.nix index 981275a..2ae342a 100644 --- a/modules/gui/foot.nix +++ b/modules/gui/foot.nix @@ -35,12 +35,11 @@ in { pad = "5x5 center"; resize-delay-ms = 100; - notify = "${pkgs.libnotify}/bin/notify-send -a \${app-id} -i \${app-id} \${title} \${body}"; - bold-text-in-bright = "no"; word-delimiters = '',│`|:"'()[]{}<>''; selection-target = "primary"; }; + desktop-notifications.command = "${pkgs.libnotify}/bin/notify-send -a \${app-id} -i \${app-id} \${title} \${body}"; bell = { urgent = "yes"; notify = "yes"; diff --git a/modules/system/keyboard.nix b/modules/system/keyboard.nix index 10d7f69..3e733f6 100644 --- a/modules/system/keyboard.nix +++ b/modules/system/keyboard.nix @@ -1,8 +1,8 @@ { services.xserver = { layout = "de,us"; - xkbVariant = ",cmk_ed_dh"; - xkbModel = ",pc105awide"; - xkbOptions = ",misc:extend,lv5:caps_switch_lock,compose:menu"; + # xkbVariant = ",cmk_ed_dh"; + # xkbModel = ",pc105awide"; + # xkbOptions = ",misc:extend,lv5:caps_switch_lock,compose:menu"; }; }