cool new color feature

This commit is contained in:
zoe 2023-02-22 17:51:23 +01:00
parent 36c5004538
commit 3d899de932
2 changed files with 10 additions and 9 deletions

View File

@ -1,14 +1,16 @@
{ ... }: { config, ... }:
{ home-manager.users.zoe.services.dunst =
{ {
enable = true; enable = true;
settings = { settings = {
global = { global = {
font = "CaskaydiaCove Nerd Font 12"; font = "${config.font.regular} 12";
timeout = 3; timeout = 3;
background = "#f9f5d7"; background = config.color.background;
foreground = "#3c3836"; foreground = config.color.foreground;
highlight = "#79740e"; highlight = config.color.green;
frame_color = "#8f3f71"; frame_color = config.color.green;
}; };
}; };
} };
}

View File

@ -1,7 +1,6 @@
{ pkgs, config, ... }: { pkgs, config, ... }:
let let
nvimCustom = import ./nvim/settings.nix; nvimCustom = import ./nvim/settings.nix;
dunstCustom = import ./dunst/settings.nix;
helixCustom = import ./helix/settings.nix; helixCustom = import ./helix/settings.nix;
in { in {
imports = [ imports = [
@ -11,13 +10,13 @@ in {
./kitty/settings.nix ./kitty/settings.nix
./rofi/settings.nix ./rofi/settings.nix
./i3/i3status-rust.nix ./i3/i3status-rust.nix
./dunst/settings.nix
]; ];
home-manager.users.zoe = { home-manager.users.zoe = {
home.stateVersion = "22.11"; home.stateVersion = "22.11";
programs.neovim = nvimCustom pkgs; programs.neovim = nvimCustom pkgs;
programs.helix = helixCustom pkgs; programs.helix = helixCustom pkgs;
services.dunst = dunstCustom pkgs;
programs.git = { programs.git = {
enable = true; enable = true;