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;
settings = {
global = {
font = "CaskaydiaCove Nerd Font 12";
font = "${config.font.regular} 12";
timeout = 3;
background = "#f9f5d7";
foreground = "#3c3836";
highlight = "#79740e";
frame_color = "#8f3f71";
background = config.color.background;
foreground = config.color.foreground;
highlight = config.color.green;
frame_color = config.color.green;
};
};
}
};
}

View File

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