1

feat: solarized

feat: solarized wall
fix: force proper solarized in helix
This commit is contained in:
Himadri Bhattacharjee
2024-12-01 20:04:51 +05:30
parent 2ad1ff6afe
commit 796d43e66d
6 changed files with 17 additions and 20 deletions

View File

@@ -85,8 +85,8 @@
./cachix/cuda-maintainers.nix
home-manager.nixosModules.home-manager
lanzaboote.nixosModules.lanzaboote
# ./hosts/default/stylix.nix
# stylix.nixosModules.stylix
./hosts/default/stylix.nix
stylix.nixosModules.stylix
nix-index-database.nixosModules.nix-index
./mpv-sponsorblock/overlay.nix
{ programs.nix-index-database.comma.enable = true; }

View File

@@ -14,8 +14,8 @@
./nvidia.nix
./secure-dns.nix
./virtualization.nix
./desktops/gnome.nix
# ./desktops/kde.nix
# ./desktops/gnome.nix
./desktops/kde.nix
];
boot = {

View File

@@ -4,6 +4,7 @@
programs.helix = {
enable = true;
settings = {
theme = pkgs.lib.mkForce "solarized_dark";
editor.cursor-shape.insert = "bar";
editor.line-number = "relative";
editor.idle-timeout = 0;

View File

@@ -1,9 +1,11 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
home.packages = with pkgs; [
keepassxc
kdePackages.kde-gtk-config
kdePackages.kclock
kdePackages.alligator
kde-rounded-corners
wezterm
];
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.5 MiB

After

Width:  |  Height:  |  Size: 270 KiB

View File

@@ -4,30 +4,24 @@
stylix.enable = true;
stylix.image = ./home/sources/stylix_image.png;
stylix.polarity = "dark";
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-frappe.yaml";
stylix.fonts = {
serif = {
package = pkgs.barlow;
name = "Barlow Light";
};
sansSerif = {
package = pkgs.barlow;
name = "Barlow Light";
};
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/solarized-dark.yaml";
stylix.fonts = rec {
monospace = {
package = pkgs.terminus-nerdfont;
name = "Terminess NerdFont";
};
serif = monospace;
sansSerif = monospace;
emoji = {
package = pkgs.noto-fonts-emoji;
name = "Noto Color Emoji";
};
sizes = {
desktop = 10;
terminal = 10;
};
};
stylix.cursor.package = pkgs.bibata-cursors;
stylix.cursor.name = "Bibata-Modern-Ice";
}