stylix
This commit is contained in:
parent
b229451bed
commit
32d6cd7889
2 changed files with 35 additions and 0 deletions
|
|
@ -22,6 +22,7 @@
|
|||
./zsh.nix
|
||||
|
||||
./sops.nix
|
||||
./stylix.nix
|
||||
];
|
||||
|
||||
system.stateVersion = "24.11";
|
||||
|
|
|
|||
34
system/stylix.nix
Normal file
34
system/stylix.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{stylix, pkgs, ...}: {
|
||||
imports = [stylix.nixosModules.stylix];
|
||||
|
||||
stylix = {
|
||||
enable = true;
|
||||
|
||||
image = ../wallpapers/default.png;
|
||||
polarity = "dark";
|
||||
|
||||
opacity = {
|
||||
terminal = 0.8;
|
||||
popups = 0.8;
|
||||
};
|
||||
|
||||
fonts = {
|
||||
monospace = {
|
||||
package = pkgs.nerd-fonts.jetbrains-mono;
|
||||
name = "JetBrainsMono Nerd Font";
|
||||
};
|
||||
|
||||
emoji = {
|
||||
package = pkgs.twemoji-color-font;
|
||||
name = "Twemoji";
|
||||
};
|
||||
|
||||
sizes = { applications = 14; desktop = 12; popups = 12; terminal = 14; };
|
||||
};
|
||||
|
||||
cursor = {
|
||||
package = pkgs.rose-pine-cursor;
|
||||
name = "Rosé Pine";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue