✨ Added wofi, waybar & hyprpaper
Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
This commit is contained in:
parent
496ad4dfc1
commit
4534ca5cf0
2 changed files with 26 additions and 9 deletions
BIN
.github/assets/evangelion_unit-01.png
vendored
Normal file
BIN
.github/assets/evangelion_unit-01.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 5 MiB |
|
@ -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" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue