aboutsummaryrefslogtreecommitdiff
path: root/home/rices/plasma6/stylix.nix
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-04-07 12:05:17 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-04-07 12:05:17 +0200
commit31f8b7a3475cfe6f6c98aac0835477c5190f1d8e (patch)
tree55a4c93f4df6ea7bca8a51ffafb2eb6dc4359b80 /home/rices/plasma6/stylix.nix
parentb36a8271ad7e52d2ecfcf93ce98ce238c833f4a3 (diff)
parenteaf2ae5fbcbdfecb7d07aa1067b2e55209fcd411 (diff)
Merge branch 'refactor-rice-system'
Diffstat (limited to 'home/rices/plasma6/stylix.nix')
-rw-r--r--home/rices/plasma6/stylix.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/home/rices/plasma6/stylix.nix b/home/rices/plasma6/stylix.nix
deleted file mode 100644
index 1c89567..0000000
--- a/home/rices/plasma6/stylix.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{pkgs, ...}: let
- vars = import ./variables.nix;
-in {
- stylix = {
- enable = true;
- base16Scheme = "${pkgs.base16-schemes}/share/themes/espresso.yaml";
- polarity = "dark";
-
- image = vars.image;
-
- fonts = {
- serif = {
- package = pkgs.dejavu_fonts;
- name = "DejaVu Serif";
- };
-
- sansSerif = {
- package = pkgs.dejavu_fonts;
- name = "DejaVu Sans";
- };
-
- monospace = {
- package = pkgs.dejavu_fonts;
- name = "DejaVu Sans Mono";
- };
-
- emoji = {
- package = pkgs.noto-fonts-color-emoji;
- name = "Noto Color Emoji";
- };
- };
- };
-}