Added wofi, waybar & hyprpaper

Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
This commit is contained in:
Sid 2025-05-29 16:54:06 +02:00
parent 496ad4dfc1
commit 4534ca5cf0
Signed by: sidski
GPG key ID: D2BBDF3EDE6BA9A6
2 changed files with 26 additions and 9 deletions

BIN
.github/assets/evangelion_unit-01.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5 MiB

View file

@ -17,9 +17,10 @@
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = [
pkgs.gnupg
pkgs.pinentry-curses
home.packages = with pkgs; [
gnupg
pinentry-curses
hyprpaper
];
# Home Manager is pretty good at managing dotfiles. The primary way to manage
@ -59,11 +60,27 @@
# Enable fish
fish.enable = true;
};
# GPG setup
services.gpg-agent = {
enable = true;
pinentry.package = pkgs.pinentry-curses;
};
# Hyprland stuff
wofi.enable = true;
waybar.enable = true;
};
services = {
# GPG setup
gpg-agent = {
enable = true;
pinentry.package = pkgs.pinentry-curses;
};
# Hyprland stuff
hyprpaper = {
enable = true;
settings = {
preload = [ "~/nixos/.github/assets/evangelion_unit-01.png" ];
wallpaper = [ ",~/nixos/.github/assets/evangelion_unit-01.png" ];
};
};
};
}