All my system configs and packages in one repo
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix stuff about the hyprland config

+24 -23
+9 -2
users/leah/presets/hyprland/default.nix
··· 3 3 ./waybar 4 4 5 5 ./clipboard.nix 6 + ./dolphin.nix 6 7 ./greetd.nix 7 8 ./mako.nix 8 9 ./media.nix ··· 12 13 ]; 13 14 14 15 roles.hyprland.enable = true; 15 - roles.dolphin.enable = true; 16 16 17 17 hm.home.packages = with pkgs; [ 18 18 networkmanagerapplet # necessary for icons ··· 35 35 }; 36 36 }; 37 37 38 - hm.services.blueman-applet.enable = true; 38 + hm.services = { 39 + blueman-applet.enable = true; 40 + 41 + mako = { 42 + enable = true; 43 + anchor = "top-right"; 44 + }; 45 + }; 39 46 40 47 services.gnome.gnome-keyring.enable = true; 41 48 services.upower.enable = true;
+13
users/leah/presets/hyprland/dolphin.nix
··· 1 + { 2 + pkgs, 3 + lib, 4 + ... 5 + }: { 6 + hm.home.packages = [pkgs.dolphin]; 7 + 8 + # TODO: annoy maintainers to add meta.mainProgram 9 + roles.hyprland.settings.bind = ["$mod, E, exec, ${lib.getExe' pkgs.dolphin "dolphin"}"]; 10 + 11 + # Required for detecting storage devices 12 + services.udisks2.enable = true; 13 + }
-18
users/leah/presets/hyprland/mako.nix
··· 1 - { 2 - hm.services.mako = { 3 - enable = true; 4 - anchor = "top-right"; 5 - 6 - backgroundColor = "#11111bee"; 7 - borderColor = "#f2cdcdee"; 8 - borderRadius = 5; 9 - textColor = "#cdd6f4"; 10 - defaultTimeout = 5000; 11 - progressColor = "over #eba0acff"; 12 - 13 - extraConfig = '' 14 - [urgency=high] 15 - border-color=#f39ba8ee 16 - ''; 17 - }; 18 - }
+2 -3
users/leah/presets/hyprland/qt.nix
··· 46 46 roles.qt = { 47 47 platform = "qt5ct"; 48 48 49 - qt5ct.settings = settings; 50 - # TODO: wait till someone packages Plasma 6 51 - qt6ct.settings = lib.recursiveUpdate settings {Appearance.style = "Fusion";}; 49 + qt5ct = {inherit settings;}; 50 + qt6ct = {inherit settings;}; 52 51 }; 53 52 }