sarien as well

This commit is contained in:
unexplrd
2025-02-14 23:09:26 +02:00
parent 920b4de9da
commit a41d92e793
5 changed files with 911 additions and 20 deletions

View File

@ -12,7 +12,7 @@
];
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/isotope.yaml";
base16Scheme = "${pkgs.base16-schemes}/share/themes/helios.yaml";
polarity = "dark";
cursor = {
package = pkgs.google-cursor;

View File

@ -47,6 +47,7 @@
dust # du in rust
fend # calc in rust
tree # tree util
rbw # bitwarden cli in rust
zip # zip util
vial # qmk keyboard configuring app
unzip # unzip util

View File

@ -7,22 +7,23 @@
inputs.stylix.nixosModules.stylix
];
environment.systemPackages = with pkgs; [
#papirus-icon-theme
nerd-fonts.iosevka
];
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/ayu-light.yaml";
polarity = "light";
base16Scheme = "${pkgs.base16-schemes}/share/themes/helios.yaml";
polarity = "dark";
cursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Ice";
package = pkgs.google-cursor;
name = "GoogleDot-Blue";
size = 24;
};
image = ../../wallpapers/wallhaven-9djzww.jpg;
image = ../../wallpapers/wallhaven-zylmoo.jpg;
opacity.terminal = 0.9;
fonts = {
sizes = {
applications = 14;
applications = 13;
desktop = 14;
popups = 13;
terminal = 15;
@ -39,6 +40,7 @@
package = pkgs.nerd-fonts.iosevka;
name = "Iosevka Nerd Font Mono";
};
emoji = {
package = pkgs.noto-fonts-emoji;
name = "Noto Color Emoji";

View File

@ -26,18 +26,18 @@
};
home.packages = with pkgs; [
flatpak
waycheck
vial
git
ripgrep
trashy
fd
dust
procs
tree
zip
unzip
virt-manager
alejandra # nix formatter
flatpak # flatpak cli
trashy # trash cli
procs # ps in rust
dust # du in rust
fend # calc in rust
tree # tree util
rbw # bitwarden cli in rust
zip # zip util
vial # qmk keyboard configuring app
unzip # unzip util
waycheck # check wayland protocols
virt-manager # libvirt gui
];
}