NixOS configuration ๐Ÿช„

๐Ÿ› some bug fixes for light-mode

Signed-off-by: Xaiya Schumin <d.schumin@proton.me>

+15 -11
assets/wallpaper/flamingo_bkg5.png

This is a binary file and will not be displayed.

-3
modules/home/desktop/sway/config/applications.nix
··· 42 42 }; 43 43 44 44 startup = [ 45 - # Software 46 - { command = "${getExe config.programs.nixcord.finalPackage.discord} --start-minimized"; } 47 - 48 45 # Display and configurations 49 46 { command = (getExe pkgs.kanshi); always = true; } 50 47
+1 -1
modules/home/desktop/sway/config/workspaces.nix
··· 15 15 wayland.windowManager.sway.config = { 16 16 # Configure wallpaper 17 17 output."*" = { 18 - bg = "${self}/assets/wallpaper/white.png fill"; 18 + bg = "${self}/assets/wallpaper/flamingo_bkg5.png fill"; 19 19 }; 20 20 defaultWorkspace = "1"; 21 21
+10
modules/home/desktop/sway/default.nix
··· 82 82 83 83 # SwayFx specific configuration 84 84 extraConfig = concatStringsSep "\n" [ 85 + # Shadows 85 86 "shadows enable" 87 + "shadows_on_csd enable" 88 + 89 + "shadow_color #7c7f93" 90 + "shadow_inactive_color #7c7f93" 91 + 92 + # "shadow_offset 5 5" 93 + "shadow_blur_radius 20" 94 + 95 + # Corners 86 96 "corner_radius 13" 87 97 ]; 88 98 };
+1 -1
modules/home/desktop/sway/packages/waybar/default.nix
··· 33 33 position = "top"; 34 34 fixed-center = true; 35 35 36 - height = 30; 36 + height = 37; 37 37 margin-top = 10; 38 38 margin-left = 10; 39 39 margin-right = 10;
+3 -6
modules/home/desktop/sway/packages/waybar/style.css
··· 1 - /* colors can be found here: */ 2 - /* https://github.com/edunfelt/base16-rose-pine-scheme/blob/main/rose-pine.yaml */ 3 - 4 1 * { 5 2 background-color: transparent; 6 3 font-family: "JetBrainsMono Nerd Font", sans-serif; ··· 15 12 border: unset; 16 13 } 17 14 18 - window#waybar { 19 - background-color: @base; 20 - border-radius: 5px; 15 + window#waybar { 16 + background-color: alpha(@mantle, 0.93); 17 + border-radius: 8px; 21 18 } 22 19 23 20 tooltip { background-color: @crust; }