this repo has no description
1
fork

Configure Feed

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

tree-wide: drop dependency on stylix

Aly Raffauf c7644451 8ce54a4d

+6 -109
-45
homes/dustin/default.nix
··· 80 80 81 81 programs.fastfetch.enable = true; 82 82 }; 83 - 84 - stylix = { 85 - enable = true; 86 - base16Scheme = "${pkgs.base16-schemes}/share/themes/default-dark.yaml"; 87 - image = "${self.inputs.wallpapers}/wallhaven-yxdrex.png"; 88 - imageScalingMode = "fill"; 89 - polarity = "dark"; 90 - 91 - cursor = { 92 - name = "Adwaita"; 93 - package = pkgs.adwaita-icon-theme; 94 - size = 24; 95 - }; 96 - 97 - fonts = { 98 - monospace = { 99 - name = "CaskaydiaCove Nerd Font"; 100 - package = pkgs.nerd-fonts.caskaydia-cove; 101 - }; 102 - 103 - sansSerif = { 104 - name = "UbuntuSans Nerd Font"; 105 - package = pkgs.nerd-fonts.ubuntu-sans; 106 - }; 107 - 108 - serif = { 109 - name = "Source Serif Pro"; 110 - package = pkgs.source-serif-pro; 111 - }; 112 - 113 - sizes = { 114 - applications = 12; 115 - desktop = 11; 116 - popups = 12; 117 - terminal = 12; 118 - }; 119 - }; 120 - 121 - opacity = { 122 - applications = 1.0; 123 - desktop = 0.8; 124 - terminal = 0.8; 125 - popups = 0.8; 126 - }; 127 - }; 128 83 }
-14
hosts/lavaridge/home.nix
··· 1 1 {self, ...}: { 2 2 home-manager.users.aly = self.homeConfigurations.aly; 3 - 4 - home-manager.sharedModules = [ 5 - { 6 - stylix.targets = { 7 - bat.enable = true; 8 - font-packages.enable = true; 9 - fontconfig.enable = true; 10 - ghostty.enable = true; 11 - helix.enable = true; 12 - vscode.enable = true; 13 - zellij.enable = true; 14 - }; 15 - } 16 - ]; 17 3 }
-15
hosts/petalburg/home.nix
··· 1 1 {self, ...}: { 2 2 home-manager.users.aly = self.homeConfigurations.aly; 3 - 4 - home-manager.sharedModules = [ 5 - { 6 - stylix.targets = { 7 - bat.enable = true; 8 - font-packages.enable = true; 9 - fontconfig.enable = true; 10 - ghostty.enable = true; 11 - helix.enable = true; 12 - vscode.enable = true; 13 - zed.enable = true; 14 - zellij.enable = true; 15 - }; 16 - } 17 - ]; 18 3 }
+4 -4
hosts/sootopolis/default.nix
··· 20 20 myHardware.lenovo.thinkpad.X1.gen-9.enable = true; 21 21 22 22 myNixOS = { 23 - # desktop.hyprland = { 24 - # enable = true; 25 - # laptopMonitor = "desc:Chimei Innolux Corporation 0x1417,preferred,auto,1.25"; 26 - # }; 23 + desktop.hyprland = { 24 + enable = true; 25 + laptopMonitor = "desc:Chimei Innolux Corporation 0x1417,preferred,auto,1.25"; 26 + }; 27 27 28 28 desktop.gnome.enable = true; 29 29
-2
modules/home/aly/programs/vsCode/default.nix
··· 75 75 }; 76 76 }; 77 77 }; 78 - 79 - stylix.targets.vscode.profileNames = lib.mkIf config.stylix.enable ["default"]; 80 78 }; 81 79 }
-1
modules/home/default.nix
··· 6 6 ./programs 7 7 ./services 8 8 self.homeModules.snippets 9 - self.inputs.stylix.homeModules.stylix 10 9 self.inputs.zen-browser.homeModules.beta 11 10 ]; 12 11 }
-18
modules/home/desktop/default.nix
··· 43 43 "file://${config.home.homeDirectory}/src" 44 44 ]; 45 45 46 - stylix = { 47 - iconTheme = { 48 - enable = true; 49 - dark = "Papirus-Dark"; 50 - light = "Papirus"; 51 - package = pkgs.papirus-icon-theme.override {color = "adwaita";}; 52 - }; 53 - 54 - targets.gtk.extraCss = builtins.concatStringsSep "\n" [ 55 - (lib.optionalString (config.stylix.polarity == "light") 56 - '' 57 - tooltip { 58 - &.background { background-color: alpha(${config.lib.stylix.colors.withHashtag.base05}, ${builtins.toString config.stylix.opacity.popups}); } 59 - background-color: alpha(${config.lib.stylix.colors.withHashtag.base05}, ${builtins.toString config.stylix.opacity.popups}); 60 - }'') 61 - ]; 62 - }; 63 - 64 46 xdg.userDirs = { 65 47 enable = true; 66 48 createDirectories = true;
-2
modules/home/desktop/gnome/default.nix
··· 94 94 }; 95 95 96 96 "org/gnome/shell/extensions/dash-to-dock" = lib.mkIf config.myHome.desktop.gnome.dock { 97 - background-color = lib.mkIf config.stylix.targets.gnome.enable config.lib.stylix.colors.withHashtag.base01; 98 97 click-action = "minimize"; 99 - custom-background-color = lib.mkIf config.stylix.targets.gnome.enable true; 100 98 custom-theme-shrink = false; 101 99 dock-fixed = false; 102 100 dock-postion = "LEFT";
+1 -1
modules/home/desktop/hyprland/default.nix
··· 40 40 ]; 41 41 42 42 dconf.settings = { 43 - "org/gnome/desktop/wm/preferences".button-layout = ""; 43 + # "org/gnome/desktop/wm/preferences".button-layout = ""; 44 44 45 45 "org/nemo/preferences" = { 46 46 show-image-thumbnails = "always";
+1 -1
modules/home/programs/rofi/default.nix
··· 17 17 18 18 programs.rofi = { 19 19 enable = true; 20 - font = "${config.stylix.fonts.monospace.name} ${toString config.stylix.fonts.sizes.popups}"; 20 + # font = "${config.stylix.fonts.monospace.name} ${toString config.stylix.fonts.sizes.popups}"; 21 21 location = "center"; 22 22 package = pkgs.rofi-wayland; 23 23
-6
modules/nixos/services/flatpak/default.nix
··· 21 21 adwaita-icon-theme 22 22 gnome-themes-extra 23 23 ]; 24 - # ++ lib.optional config.stylix.enable config.stylix.cursor.package; 25 24 26 25 pathsToLink = ["/share/icons"]; 27 26 }; ··· 47 46 source-code-pro 48 47 source-sans-pro 49 48 ]; 50 - # ++ lib.optionals config.stylix.enable [ 51 - # config.stylix.fonts.sansSerif.package 52 - # config.stylix.fonts.monospace.package 53 - # config.stylix.fonts.serif.package 54 - # ]; 55 49 }; 56 50 57 51 services.flatpak.enable = true;