summaryrefslogtreecommitdiff
path: root/users/andromeda/stylix.nix
diff options
context:
space:
mode:
authorandromeda <andromeda@lenovo>2025-12-30 00:32:23 +0100
committerandromeda <andromeda@lenovo>2025-12-30 00:32:23 +0100
commit1463a81e8cdb09fb87b4401a1e3179121d50cae5 (patch)
tree17711dda6a5f6ca40acd5ca982b27b0425ec393c /users/andromeda/stylix.nix
parent12438a9c8d5412258f976bb09881258462189222 (diff)
modularise, combine
Diffstat (limited to 'users/andromeda/stylix.nix')
-rw-r--r--users/andromeda/stylix.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/users/andromeda/stylix.nix b/users/andromeda/stylix.nix
new file mode 100644
index 0000000..208d2cc
--- /dev/null
+++ b/users/andromeda/stylix.nix
@@ -0,0 +1,35 @@
+{
+ pkgs,
+ config,
+ ...
+}: {
+ stylix = {
+ enable = true;
+ # rebecca has lavener bkg
+ # tube has dark gray bkg
+ # silk-light is light theme
+ base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-material-dark-hard.yaml";
+ polarity = "dark";
+ image = ./nix-wallpaper-gear.png;
+ fonts = {
+ monospace = {
+ package = pkgs.miracode;
+ name = "Miracode";
+ };
+ serif = config.stylix.fonts.sansSerif;
+ emoji = {
+ package = pkgs.noto-fonts-color-emoji;
+ name = "Noto Color Emoji";
+ };
+ sizes = {
+ applications = 12;
+ terminal = 10;
+ };
+ };
+ cursor = {
+ package = pkgs.hackneyed;
+ name = "Hackneyed";
+ size = 16;
+ };
+ };
+}