add dunst theme

This commit is contained in:
ark-lamp-umbrella 2024-04-10 20:19:03 -07:00
parent d101e806ba
commit 01995312b9
Signed by: ark-lamp-umbrella
GPG Key ID: 15E48F7B97025652
1 changed files with 7 additions and 2 deletions

View File

@ -2,12 +2,13 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, lib, ... }:
{ pkgs, lib, ... }:
let
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz";
wofi-catppuccin = builtins.fetchTarball "https://github.com/quantumfate/wofi/archive/master.tar.gz";
starship-catppuccin = builtins.fetchTarball "https://github.com/catppuccin/starship/archive/master.tar.gz";
helix-catppuccin = builtins.fetchTarball "https://github.com/catppuccin/helix/archive/master.tar.gz";
dunst-catppuccin = builtins.fetchTarball "https://github.com/catppuccin/dunst/archive/master.tar.gz";
in
{
imports =
@ -102,7 +103,6 @@ in
# $ nix search wget
environment.systemPackages = with pkgs; [
waybar # Toolbar
dunst # Notification Handler
libnotify # Notification Library
lxqt.lxqt-policykit # Polkit
pkgsi686Linux.gperftools # Steam fix
@ -161,6 +161,11 @@ in
pkgs.zls # zig lsp
pkgs.nil # nix lsp
];
services = {
dunst = {
configFile = "${dunst-catppuccin}/themes/macchiato.conf";
};
};
programs = {
hyfetch = {
enable = true;