summaryrefslogtreecommitdiff
path: root/home/rices/nord-blue/system.nix
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-06-12 13:37:13 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-06-12 13:37:13 +0200
commit15d50528cf86e93bad19f65f1e4b47af49e94d71 (patch)
treecaaa600a8f38df84dc269a3844d276393e90262c /home/rices/nord-blue/system.nix
parent72ee2b5a1e65ce804d6e1dcfd11aec06385594cc (diff)
Nuked everything
Diffstat (limited to 'home/rices/nord-blue/system.nix')
-rw-r--r--home/rices/nord-blue/system.nix83
1 files changed, 0 insertions, 83 deletions
diff --git a/home/rices/nord-blue/system.nix b/home/rices/nord-blue/system.nix
deleted file mode 100644
index ac7e0ab..0000000
--- a/home/rices/nord-blue/system.nix
+++ /dev/null
@@ -1,83 +0,0 @@
-{pkgs, ...}: {
- # Desktop environment - i3 window manager
- services.xserver = {
- enable = true;
- windowManager.i3.enable = true;
- xkb = {
- layout = "cz";
- options = "eurosign:e,caps:escape";
- };
- };
-
- services.picom.enable = true;
-
- # Stylix configuration
- stylix = {
- enable = true;
- autoEnable = true;
-
- base16Scheme = {
- base00 = "2D333F"; # background
- base01 = "3B4252"; # lighter background
- base02 = "434C5E"; # selection background
- base03 = "4C566A"; # comments
- base04 = "D8DEE9"; # dark foreground
- base05 = "C6D0F5"; # foreground
- base06 = "E5E9F0"; # light foreground
- base07 = "ECEFF4"; # lightest foreground
- base08 = "BF616A"; # red
- base09 = "D5A18E"; # orange/tan
- base0A = "EBCB8B"; # yellow
- base0B = "A3BE8C"; # green
- base0C = "88C0D0"; # cyan
- base0D = "82A3C0"; # blue (accent)
- base0E = "B48EAD"; # purple
- base0F = "5E81AC"; # dark blue
- };
-
- image = pkgs.fetchurl {
- url = "https://raw.githubusercontent.com/NixOS/nixos-artwork/master/wallpapers/nix-wallpaper-simple-blue.png";
- sha256 = "sha256-utrcjzfeJoFOpUbFY2eIUNCKy5rjLt57xIoUUssJmdI=";
- };
-
- fonts = {
- monospace = {
- package = pkgs.nerd-fonts.jetbrains-mono;
- name = "JetBrainsMono Nerd Font";
- };
- sansSerif = {
- package = pkgs.noto-fonts;
- name = "Noto Sans";
- };
- serif = {
- package = pkgs.noto-fonts;
- name = "Noto Serif";
- };
- emoji = {
- package = pkgs.noto-fonts-color-emoji;
- name = "Noto Color Emoji";
- };
- sizes = {
- terminal = 10;
- applications = 11;
- desktop = 11;
- };
- };
-
- cursor = {
- package = pkgs.bibata-cursors;
- name = "Bibata-Modern-Classic";
- size = 24;
- };
-
- opacity = {
- terminal = 0.95;
- applications = 1.0;
- desktop = 1.0;
- popups = 0.95;
- };
-
- polarity = "dark";
- targets.nixos-icons.enable = false;
- };
-}