-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ (stylix): wip - migrating for nix-colors to stylix
- Loading branch information
Showing
15 changed files
with
429 additions
and
153 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
{ | ||
{pkgs, ...}: { | ||
gtk = { | ||
enable = true; | ||
gtk3.extraConfig.gtk-decoration-layout = "menu:"; | ||
iconTheme.name = "Reversal-dark"; | ||
theme.name = "phocus"; | ||
font = { | ||
name = "ZedMono NF"; | ||
size = 11; | ||
iconTheme = { | ||
name = "Papirus-Dark"; | ||
package = pkgs.papirus-icon-theme.override {color = "nordic";}; | ||
}; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
scheme: 'paradise' | ||
author: 'manas140' | ||
accent: 'B66467' | ||
base00: '151515' | ||
base01: '1F1F1F' | ||
base02: '2E2E2E' | ||
base03: '424242' | ||
base04: 'BBB6B6' | ||
base05: 'E8E3E3' | ||
base06: 'E8E3E3' | ||
base07: 'E8E3E3' | ||
base08: 'B66467' | ||
base09: 'D9BC8C' | ||
base0A: 'D9BC8C' | ||
base0B: '8C977D' | ||
base0C: '8AA6A2' | ||
base0D: '8DA3B9' | ||
base0E: 'A988B0' | ||
base0F: 'BBB6B6' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
pkgs, | ||
config, | ||
... | ||
}: { | ||
stylix = { | ||
base16Scheme = ./${config.theme}.yaml; | ||
image = ../../../../home/shared/walls/${config.theme}.jpg; | ||
# base16Scheme = "${pkgs.base16-schemes}/share/themes/ashes.yaml"; | ||
polarity = "dark"; | ||
cursor = { | ||
name = "Bibata-Modern-Ice"; | ||
package = pkgs.bibata-cursors; | ||
size = 20; | ||
}; | ||
|
||
targets = { | ||
k9s.enable = false; | ||
lazygit.enable = false; | ||
hyprland.enable = false; | ||
firefox.enable = false; | ||
fzf.enable = false; | ||
rofi.enable = false; | ||
gtk.extraCss = with config.lib.stylix.colors; '' | ||
@define-color accent_color #${base0D}; | ||
@define-color accent_bg_color #${base0D}; | ||
''; | ||
}; | ||
|
||
fonts = { | ||
monospace = { | ||
name = "ZedMono NF"; | ||
package = pkgs.nerdfonts.override {fonts = ["ZedMono"];}; | ||
}; | ||
sansSerif = { | ||
name = "IBM Plex Sans"; | ||
package = pkgs.ibm-plex; | ||
}; | ||
}; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
{ | ||
imports = [ | ||
./foot | ||
./kitty | ||
./wezterm | ||
]; | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.