✨ 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
|
# The home.packages option allows you to install Nix packages into your
|
||||||
# environment.
|
# environment.
|
||||||
home.packages = [
|
home.packages = with pkgs; [
|
||||||
pkgs.gnupg
|
gnupg
|
||||||
pkgs.pinentry-curses
|
pinentry-curses
|
||||||
|
hyprpaper
|
||||||
];
|
];
|
||||||
|
|
||||||
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
||||||
|
@ -59,11 +60,27 @@
|
||||||
|
|
||||||
# Enable fish
|
# Enable fish
|
||||||
fish.enable = true;
|
fish.enable = true;
|
||||||
};
|
|
||||||
|
|
||||||
# GPG setup
|
# Hyprland stuff
|
||||||
services.gpg-agent = {
|
wofi.enable = true;
|
||||||
enable = true;
|
waybar.enable = true;
|
||||||
pinentry.package = pkgs.pinentry-curses;
|
};
|
||||||
};
|
|
||||||
|
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