From 5810685c036475d3255170b7484de3bc7a56fbce Mon Sep 17 00:00:00 2001 From: specCon18 Date: Wed, 29 Mar 2023 00:47:10 -0400 Subject: [PATCH] added ncspot and configured alacritty --- flake.nix | 1 + users/speccon18/home.nix | 69 +++++++++++++++++++++++++++++++++++++++- 2 files changed, 69 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 06494e0..e42cb94 100644 --- a/flake.nix +++ b/flake.nix @@ -19,6 +19,7 @@ # For Secrets Management # sops-nix.url = github:Mic92/sops-nix; + # For Dev Env https://devenv.sh # devenv.url = "github:cachix/devenv/latest"; }; diff --git a/users/speccon18/home.nix b/users/speccon18/home.nix index 1da3007..be663b9 100644 --- a/users/speccon18/home.nix +++ b/users/speccon18/home.nix @@ -20,14 +20,81 @@ obsidian neofetch vlc + zellij remmina signal-desktop starship alacritty + ncspot ]; }; - + programs = { + ncspot = { + enable = true; + package = pkgs.ncspot; + }; + alacritty = { + enable = true; + settings = { + window = { + dimensions = { + columns = 120; + lines = 25; + }; + decorations = "none"; + opacity = 0.8; + title = "Alacritty"; + }; + font = { + normal = { + family = "SauceCodePro Nerd Font"; + }; + bold = { + family = "SauceCodePro Nerd Font"; + style = "bold"; + }; + size = 12; + }; + colors = { + primary = { + background = "#1d1f21"; + foreground = "#c5c8c6"; + }; + cursor = { + text = "CellBackground"; + cursor = "CellForeground"; + }; + # Normal colors + normal = { + black = "#363537"; + red = "#FC618D"; + green = "#7BD88F"; + yellow = "#FCE566"; + blue = "#FD9353"; + magenta = "#948AE3"; + cyan = "#5AD4E6"; + white = "#F7F1FF"; + }; + + # Bright colors + bright = { + black = "#69676C"; + red = "#FC618D"; + green = "#7BD88F"; + yellow = "#FCE566"; + blue = "#FD9353"; + magenta = "#948AE3"; + cyan = "#5AD4E6"; + white = "#F7F1FF"; + }; + }; + }; + }; + zellij = { + enable = true; + package = pkgs.zellij; + }; nushell = { enable = false; };