From 15d50528cf86e93bad19f65f1e4b47af49e94d71 Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Fri, 12 Jun 2026 13:37:13 +0200 Subject: Nuked everything --- home/rices/nord-blue/alacritty.nix | 13 -- home/rices/nord-blue/default.nix | 4 - home/rices/nord-blue/dunst.nix | 101 -------- home/rices/nord-blue/fastfetch.nix | 24 -- home/rices/nord-blue/helix.nix | 171 -------------- home/rices/nord-blue/home.nix | 11 - home/rices/nord-blue/i3.nix | 111 --------- home/rices/nord-blue/nvim.nix | 279 ----------------------- home/rices/nord-blue/picom.nix | 60 ----- home/rices/nord-blue/system.nix | 83 ------- home/rices/nord-blue/variables.nix | 11 - home/rices/nord-blue/wallpapers/wave-minimal.png | Bin 352335 -> 0 bytes 12 files changed, 868 deletions(-) delete mode 100644 home/rices/nord-blue/alacritty.nix delete mode 100644 home/rices/nord-blue/default.nix delete mode 100644 home/rices/nord-blue/dunst.nix delete mode 100644 home/rices/nord-blue/fastfetch.nix delete mode 100644 home/rices/nord-blue/helix.nix delete mode 100644 home/rices/nord-blue/home.nix delete mode 100644 home/rices/nord-blue/i3.nix delete mode 100644 home/rices/nord-blue/nvim.nix delete mode 100644 home/rices/nord-blue/picom.nix delete mode 100644 home/rices/nord-blue/system.nix delete mode 100644 home/rices/nord-blue/variables.nix delete mode 100644 home/rices/nord-blue/wallpapers/wave-minimal.png (limited to 'home/rices/nord-blue') diff --git a/home/rices/nord-blue/alacritty.nix b/home/rices/nord-blue/alacritty.nix deleted file mode 100644 index 772718c..0000000 --- a/home/rices/nord-blue/alacritty.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ - pkgs, - lib, - ... -}: { - # Let Stylix handle Alacritty theming - # Only override font size if needed - programs.alacritty.settings.font.size = lib.mkForce 10; - - home.packages = with pkgs; [ - nerd-fonts.jetbrains-mono - ]; -} diff --git a/home/rices/nord-blue/default.nix b/home/rices/nord-blue/default.nix deleted file mode 100644 index 6b7865d..0000000 --- a/home/rices/nord-blue/default.nix +++ /dev/null @@ -1,4 +0,0 @@ -{ - system = import ./system.nix; - home = import ./home.nix; -} diff --git a/home/rices/nord-blue/dunst.nix b/home/rices/nord-blue/dunst.nix deleted file mode 100644 index 6226cb6..0000000 --- a/home/rices/nord-blue/dunst.nix +++ /dev/null @@ -1,101 +0,0 @@ -{ config, pkgs, lib, ... }: - -let - vars = import ./variables.nix; - - # Battery notification script - batteryNotify = pkgs.writeShellScriptBin "battery-notify" '' - #!/bin/sh - - # Get battery status - BATTERY_PATH="/sys/class/power_supply/BAT0" - - if [ ! -d "$BATTERY_PATH" ]; then - # Try BAT1 if BAT0 doesn't exist - BATTERY_PATH="/sys/class/power_supply/BAT1" - if [ ! -d "$BATTERY_PATH" ]; then - exit 0 - fi - fi - - CAPACITY=$(cat "$BATTERY_PATH/capacity") - STATUS=$(cat "$BATTERY_PATH/status") - - # Critical threshold (5%) - if [ "$CAPACITY" -le 5 ] && [ "$STATUS" != "Charging" ]; then - ${pkgs.libnotify}/bin/notify-send -u critical "Battery Critical" "Battery level: $CAPACITY%\nPlease plug in charger immediately!" - # Low threshold (15%) - elif [ "$CAPACITY" -le 15 ] && [ "$STATUS" != "Charging" ]; then - ${pkgs.libnotify}/bin/notify-send -u normal "Battery Low" "Battery level: $CAPACITY%\nConsider plugging in charger soon." - fi - ''; - -in { - home.packages = [ batteryNotify ]; - - services.dunst = { - enable = true; - - settings = { - global = { - width = "(200,300)"; - height = "(0,150)"; - offset = "(30,50)"; - origin = "bottom-right"; - transparency = 10; - frame_width = 2; - corner_radius = 8; - gap_size = 5; - }; - - # Let stylix handle color styling - # urgency_low = { - # background = vars.colors.background; - # foreground = vars.colors.foreground; - # timeout = 8; - # }; - - # urgency_normal = { - # background = vars.colors.background; - # foreground = vars.colors.foreground; - # frame_color = vars.colors.accent; - # timeout = 10; - # }; - - urgency_critical = { - # background = vars.colors.background; - # foreground = vars.colors.foreground; - # frame_color = vars.colors.alert; - timeout = 0; # Don't auto-dismiss critical notifications - }; - }; - }; - - # Systemd service to check battery periodically - systemd.user.services.battery-notify = { - Unit = { - Description = "Battery level notification service"; - }; - - Service = { - Type = "oneshot"; - ExecStart = "${batteryNotify}/bin/battery-notify"; - }; - }; - - # Timer to run battery check every 2 minutes - systemd.user.timers.battery-notify = { - Unit = { - Description = "Battery level notification timer"; - }; - - Timer = { - OnBootSec = "1min"; - OnUnitActiveSec = "2min"; - }; - - Install = { - WantedBy = [ "timers.target" ]; - }; - }; -} diff --git a/home/rices/nord-blue/fastfetch.nix b/home/rices/nord-blue/fastfetch.nix deleted file mode 100644 index 700ae80..0000000 --- a/home/rices/nord-blue/fastfetch.nix +++ /dev/null @@ -1,24 +0,0 @@ -{...}: { - programs.fastfetch = { - enable = true; - settings = { - logo = { - type = "builtin"; - source = "nixos_small"; - }; - display.separator = " "; - modules = [ - "title" - "os" - "kernel" - "uptime" - "packages" - "shell" - "terminal" - "cpu" - "memory" - "disk" - ]; - }; - }; -} diff --git a/home/rices/nord-blue/helix.nix b/home/rices/nord-blue/helix.nix deleted file mode 100644 index eb893ee..0000000 --- a/home/rices/nord-blue/helix.nix +++ /dev/null @@ -1,171 +0,0 @@ -{ - pkgs, - lib, - ... -}: { - programs.helix = { - enable = true; - defaultEditor = false; - settings = { - # Let Stylix handle theming - editor = { - cursor-shape = { - normal = "block"; - insert = "bar"; - select = "underline"; - }; - line-number = "relative"; - bufferline = "multiple"; - color-modes = true; - cursorline = true; - auto-save = { - after-delay.enable = true; - after-delay.timeout = 10000; - }; - auto-format = true; - end-of-line-diagnostics = "hint"; - inline-diagnostics.cursor-line = "hint"; - lsp = { - display-messages = true; - display-inlay-hints = true; - }; - popup-border = "popup"; - statusline.left = [ - "mode" - "spinner" - "spacer" - "version-control" - "file-name" - "diagnostics" - "read-only-indicator" - "file-modification-indicator" - "spacer" - ]; - statusline.right = [ - "workspace-diagnostics" - "register" - "position" - "selections" - "file-encoding" - "file-type" - ]; - idle-timeout = 50; - completion-timeout = 100; - indent-guides = { - render = true; - character = "|"; - skip-levels = 3; - }; - soft-wrap.enable = true; - whitespace = { - render = { - space = "none"; - tab = "all"; - newline = "none"; - }; - characters = { - nbsp = "·"; - tab = "→"; - }; - }; - }; - }; - languages = { - language-server = { - "bash-language-server" = { - command = "${pkgs.bash-language-server}/bin/bash-language-server"; - args = ["start"]; - }; - "superhtml" = { - command = "${pkgs.superhtml}/bin/superhtml"; - }; - "vscode-css-languageserver" = { - command = "${pkgs.vscode-css-languageserver}/bin/vscode-css-languageserver"; - }; - "rust-analyzer" = { - command = "${pkgs.rust-analyzer}/bin/rust-analyzer"; - }; - "pyright" = { - command = "${pkgs.pyright}/bin/pyright"; - }; - "nil" = { - command = "${pkgs.nil}/bin/nil"; - }; - "texlab" = { - command = "${pkgs.texlab}/bin/texlab"; - }; - texlab.config.texlab = { - build = { - onSave = true; - forwardSearchAfter = true; - }; - chktext.onEdit = true; - forwardSearch = { - executable = "zathura"; - args = ["--synctex-forward" "%l:1:%f" "%p"]; - }; - }; - "marksman" = { - command = "${pkgs.marksman}/bin/marksman"; - }; - }; - language = [ - { - name = "bash"; - language-servers = ["bash-language-server"]; - auto-format = true; - } - { - name = "html"; - language-servers = ["superhtml"]; - auto-format = true; - } - { - name = "css"; - language-servers = ["vscode-css-languageserver"]; - auto-format = true; - } - { - name = "rust"; - language-servers = ["rust-analyzer"]; - auto-format = true; - } - { - name = "python"; - language-servers = ["pyright"]; - auto-format = true; - } - { - name = "nix"; - language-servers = ["nil"]; - auto-format = true; - } - { - name = "latex"; - language-servers = ["texlab"]; - auto-format = true; - } - { - name = "markdown"; - language-servers = ["marksman"]; - auto-format = true; - } - ]; - }; - }; - - home.packages = with pkgs; [ - zathura - ripgrep - fd - bash-language-server - superhtml - vscode-css-languageserver - rust-analyzer - llvmPackages_latest.lldb - pyright - nil - texlab - marksman - ]; -} diff --git a/home/rices/nord-blue/home.nix b/home/rices/nord-blue/home.nix deleted file mode 100644 index cb2090c..0000000 --- a/home/rices/nord-blue/home.nix +++ /dev/null @@ -1,11 +0,0 @@ -{...}: { - imports = [ - ./alacritty.nix - ./i3.nix - ./nvim.nix - ./helix.nix - ./picom.nix - ./fastfetch.nix - ./dunst.nix - ]; -} diff --git a/home/rices/nord-blue/i3.nix b/home/rices/nord-blue/i3.nix deleted file mode 100644 index 643430b..0000000 --- a/home/rices/nord-blue/i3.nix +++ /dev/null @@ -1,111 +0,0 @@ -{ - pkgs, - lib, - ... -}: let - vars = import ./variables.nix; - mod = "Mod4"; - - lock-screen = pkgs.writeShellScriptBin "lock-screen" '' - #!/usr/bin/env sh - set -eu - WALL="''${1:-$HOME/Pictures/wallpaper.png}" - TMP="/tmp/lockscreen.png" - RES=$(xrandr | awk '/\*/ {print $1; exit}') - magick "$WALL" -resize "''${RES}^" -gravity center -extent "$RES" "$TMP" - i3lock -i "$TMP" - ''; - - app-launcher = pkgs.writeShellScriptBin "app-launcher" '' - #!/usr/bin/env sh - BG='${vars.colors.background}' - FG='${vars.colors.foreground}' - ACCENT='${vars.colors.accent}' - TEXT='${vars.colors.text}' - dmenu_run -fn 'JetBrains Mono-12' -nb "$BG" -nf "$FG" -sb "$ACCENT" -sf "$TEXT" - ''; -in { - xsession.windowManager.i3 = { - enable = true; - config = { - modifier = mod; - bars = []; - - window = { - titlebar = false; - border = 3; - }; - - # Colors handled by Stylix - - startup = [ - {command = "sh -c 'feh --bg-scale ~/Pictures/wallpaper.png'";} - ]; - - keybindings = lib.mkOptionDefault { - "${mod}+Return" = "exec ${pkgs.alacritty}/bin/alacritty"; - "${mod}+d" = "exec ${app-launcher}/bin/app-launcher"; - "${mod}+m" = "exec ${app-launcher}/bin/app-launcher"; - "${mod}+Shift+m" = "exec alacritty -e nnn"; - "${mod}+n" = "exec firefox"; - "${mod}+q" = "kill"; - "${mod}+Ctrl+l" = "exec ${lock-screen}/bin/lock-screen"; - "${mod}+Shift+r" = "restart"; - "${mod}+Ctrl+Shift+e" = "exec sh -c 'i3-msg exit'"; - "${mod}+Shift+s" = "exec flameshot gui"; - - # Focus (vim bindings) - "${mod}+h" = "focus left"; - "${mod}+j" = "focus down"; - "${mod}+k" = "focus up"; - "${mod}+l" = "focus right"; - - # Focus (arrow keys) - "${mod}+Left" = "focus left"; - "${mod}+Down" = "focus down"; - "${mod}+Up" = "focus up"; - "${mod}+Right" = "focus right"; - - # Move (vim bindings) - "${mod}+Shift+h" = "move left"; - "${mod}+Shift+j" = "move down"; - "${mod}+Shift+k" = "move up"; - "${mod}+Shift+l" = "move right"; - - # Move (arrow keys) - "${mod}+Shift+Left" = "move left"; - "${mod}+Shift+Down" = "move down"; - "${mod}+Shift+Up" = "move up"; - "${mod}+Shift+Right" = "move right"; - - # Volume - "XF86AudioRaiseVolume" = "exec wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+"; - "XF86AudioLowerVolume" = "exec wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"; - "XF86AudioMute" = "exec wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"; - "XF86AudioMicMute" = "exec wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"; - - # Brightness - "XF86MonBrightnessUp" = "exec brightnessctl set 5%+"; - "XF86MonBrightnessDown" = "exec brightnessctl set 5%-"; - }; - }; - - extraConfig = '' - smart_borders on - - # Remove borders from notification windows - for_window [class="^Dunst$"] border none - for_window [class="^dunst$"] border none - ''; - }; - - home.packages = with pkgs; [ - dmenu - i3lock - imagemagick - polybar - alacritty - feh - nnn - ]; -} diff --git a/home/rices/nord-blue/nvim.nix b/home/rices/nord-blue/nvim.nix deleted file mode 100644 index 9677c57..0000000 --- a/home/rices/nord-blue/nvim.nix +++ /dev/null @@ -1,279 +0,0 @@ -{pkgs, ...}: { - home.packages = with pkgs; [ - zathura - ripgrep - fd - lazygit - stylua - alejandra - black - shfmt - - # Language servers - lua-language-server - nil - rust-analyzer - pyright - bash-language-server - texlab - ]; - - programs.neovim = { - enable = true; - defaultEditor = true; - viAlias = true; - vimAlias = true; - - plugins = with pkgs.vimPlugins; [ - # UI - catppuccin-nvim - nvim-web-devicons - which-key-nvim - gitsigns-nvim - - # Syntax - (nvim-treesitter.withPlugins (p: [ - p.lua - p.nix - p.rust - p.python - p.bash - p.latex - p.c - ])) - - # LSP - nvim-lspconfig - - # Completion / snippets - nvim-cmp - cmp-nvim-lsp - cmp_luasnip - luasnip - friendly-snippets - nvim-autopairs - - # Formatting - conform-nvim - comment-nvim - - # Navigation - telescope-nvim - plenary-nvim - nvim-tree-lua - - # Terminal - toggleterm-nvim - - # Writing - vimtex - orgmode - - # Start screen - { - plugin = vim-startify; - config = "let g:startify_change_to_vcs_root = 0"; - } - ]; - - extraLuaConfig = '' - ------------------------------------------------- - -- LEADER - ------------------------------------------------- - vim.g.mapleader = " " - - ------------------------------------------------- - -- BASIC OPTIONS - ------------------------------------------------- - vim.opt.number = true - vim.opt.relativenumber = true - vim.opt.clipboard = "unnamedplus" - vim.opt.showtabline = 2 - vim.o.timeout = true - vim.o.timeoutlen = 300 - - ------------------------------------------------- - -- THEME - ------------------------------------------------- - require("catppuccin").setup({ - flavour = "mocha", - }) - vim.cmd.colorscheme("catppuccin") - - ------------------------------------------------- - -- GITSIGNS - ------------------------------------------------- - require("gitsigns").setup() - - ------------------------------------------------- - -- TREESITTER - ------------------------------------------------- - require("nvim-treesitter.configs").setup({ - highlight = { enable = true }, - indent = { enable = true }, - }) - - vim.opt.foldmethod = "expr" - vim.opt.foldexpr = "nvim_treesitter#foldexpr()" - vim.opt.foldenable = false - - ------------------------------------------------- - -- SNIPPETS - ------------------------------------------------- - require("luasnip.loaders.from_vscode").lazy_load() - - ------------------------------------------------- - -- COMPLETION - ------------------------------------------------- - local cmp = require("cmp") - local luasnip = require("luasnip") - - cmp.setup({ - snippet = { - expand = function(args) - luasnip.lsp_expand(args.body) - end, - }, - mapping = cmp.mapping.preset.insert({ - [""] = cmp.mapping.complete(), - [""] = cmp.mapping.confirm({ select = true }), - }), - sources = { - { name = "nvim_lsp" }, - { name = "luasnip" }, - }, - }) - - require("nvim-autopairs").setup({}) - - ------------------------------------------------- - -- LSP - ------------------------------------------------- - local capabilities = require("cmp_nvim_lsp").default_capabilities() - - local servers = { - "lua_ls", - "nil_ls", - "rust_analyzer", - "pyright", - "bashls", - "texlab", - } - - for _, server in ipairs(servers) do - vim.lsp.config(server, { - capabilities = capabilities - }) - vim.lsp.enable(server) - end - - ------------------------------------------------- - -- LSP KEYMAPS - ------------------------------------------------- - vim.keymap.set("n", "ld", vim.lsp.buf.definition) - vim.keymap.set("n", "lD", vim.lsp.buf.declaration) - vim.keymap.set("n", "li", vim.lsp.buf.implementation) - vim.keymap.set("n", "lr", vim.lsp.buf.references) - vim.keymap.set("n", "lh", vim.lsp.buf.hover) - vim.keymap.set("n", "ln", vim.lsp.buf.rename) - vim.keymap.set("n", "la", vim.lsp.buf.code_action) - vim.keymap.set("n", "lf", function() vim.lsp.buf.format() end) - - ------------------------------------------------- - -- DIAGNOSTICS - ------------------------------------------------- - vim.keymap.set("n", "lj", vim.diagnostic.goto_next) - vim.keymap.set("n", "lk", vim.diagnostic.goto_prev) - vim.keymap.set("n", "le", vim.diagnostic.open_float) - - ------------------------------------------------- - -- FORMATTER - ------------------------------------------------- - require("conform").setup({ - format_on_save = { - timeout_ms = 500, - lsp_format = "fallback", - }, - formatters_by_ft = { - lua = { "stylua" }, - nix = { "alejandra" }, - rust = { "rustfmt" }, - python = { "black" }, - bash = { "shfmt" }, - }, - }) - - require("Comment").setup() - - ------------------------------------------------- - -- TELESCOPE - ------------------------------------------------- - local builtin = require("telescope.builtin") - - require("telescope").setup({ - defaults = { - layout_strategy = "horizontal", - sorting_strategy = "ascending", - file_ignore_patterns = { "node_modules", ".git/" }, - }, - }) - - vim.keymap.set("n", "", builtin.find_files) - vim.keymap.set("n", "fg", builtin.live_grep) - vim.keymap.set("n", "fb", builtin.buffers) - - ------------------------------------------------- - -- WHICH KEY - ------------------------------------------------- - local wk = require("which-key") - wk.add({ - { "l", desc = "LSP" } - }) - - ------------------------------------------------- - -- NVIM TREE - ------------------------------------------------- - require("nvim-tree").setup({}) - vim.keymap.set("n", "e", "NvimTreeToggle") - - ------------------------------------------------- - -- TERMINAL - ------------------------------------------------- - require("toggleterm").setup({ - direction = "float", - }) - - local Terminal = require("toggleterm.terminal").Terminal - - local lazygit = Terminal:new({ - cmd = "lazygit", - hidden = true, - direction = "float", - }) - - vim.keymap.set("n", "gg", function() - lazygit:toggle() - end) - - ------------------------------------------------- - -- ORGMODE - ------------------------------------------------- - local projects = { - "~/Documents/2_Writing/0_SOC/**/*.org", - "~/Documents/2_Writing/2_Notes/**/*.org", - "~/Documents/1_Projects/6_CRC-Altura/**/*.org", - "~/ORG/**/*.org" - } - - require("orgmode").setup({ - org_agenda_files = projects, - org_default_notes_file = "~/INBOX.org" - }) - - ------------------------------------------------- - -- VIMTEX - ------------------------------------------------- - vim.g.vimtex_view_method = "zathura" - ''; - }; -} diff --git a/home/rices/nord-blue/picom.nix b/home/rices/nord-blue/picom.nix deleted file mode 100644 index aba6aa4..0000000 --- a/home/rices/nord-blue/picom.nix +++ /dev/null @@ -1,60 +0,0 @@ -{pkgs, ...}: { - services.picom = { - enable = true; - package = pkgs.picom-pijulius; - - settings = { - backend = "glx"; - vsync = true; - - # Opacity - inactive-opacity = 0.9; - active-opacity = 1.0; - - # Fading - fading = true; - fade-delta = 5; - fade-in-step = 0.09; - fade-out-step = 0.09; - - # Shadows - shadow = true; - shadow-radius = 15; - shadow-opacity = 0.5; - shadow-offset-x = 12; - shadow-offset-y = 12; - shadow-exclude = [ - "class_g = 'i3-frame'" - "window_type = 'dock'" - "window_type = 'desktop'" - "window_type = 'notification'" - "name = 'dmenu'" - "class_g = 'dmenu'" - "class_g = 'Dunst'" - "class_g = 'dunst'" - ]; - - # Rounded corners - corner-radius = 15; - round-borders = 1; - rounded-corners-exclude = [ - "class_g = 'i3-frame'" - "window_type = 'dock'" - "window_type = 'notification'" - "class_g = 'Dunst'" - "class_g = 'dunst'" - ]; - - # Animations - animations = true; - animation-stiffness = 25; - animation-dampening = 1; - animation-window-mass = 0.01; - animation-for-open-window = "zoom"; - animation-for-unmap-window = "slide-up"; - animation-for-transient-window = "zoom"; - animation-for-move-window = "slide"; - animation-for-resize-window = "stretch"; - }; - }; -} 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; - }; -} diff --git a/home/rices/nord-blue/variables.nix b/home/rices/nord-blue/variables.nix deleted file mode 100644 index cc221ca..0000000 --- a/home/rices/nord-blue/variables.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ - colors = { - background = "#2D333F"; - accent = "#82A3C0"; - foreground = "#C6D0F5"; - text = "#D5A18E"; - alert = "#BF616A"; # Nord red for critical alerts - }; - - wallpaper = "~/Pictures/wallpaper.png"; -} diff --git a/home/rices/nord-blue/wallpapers/wave-minimal.png b/home/rices/nord-blue/wallpapers/wave-minimal.png deleted file mode 100644 index 5d322d4..0000000 Binary files a/home/rices/nord-blue/wallpapers/wave-minimal.png and /dev/null differ -- cgit v1.2.3