Compare commits

..

No commits in common. "9f9ebb49c9cb8ed583525f752c3e439736b6c671" and "496ad4dfc13c7ca6aa9dc9d386e7bd98941777cf" have entirely different histories.

3 changed files with 10 additions and 33 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5 MiB

View file

@ -119,7 +119,6 @@
ledger-live-desktop ledger-live-desktop
nodejs_22 nodejs_22
pnpm pnpm
komikku
]; ];
# Custom services # Custom services

View file

@ -17,10 +17,9 @@
# 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 = with pkgs; [ home.packages = [
gnupg pkgs.gnupg
pinentry-curses pkgs.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,33 +58,12 @@
}; };
# Enable fish # Enable fish
fish = { fish.enable = true;
enable = true; };
interactiveShellInit = ''
fastfetch
'';
};
# 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" ];
};
};
};
# GPG setup
services.gpg-agent = {
enable = true;
pinentry.package = pkgs.pinentry-curses;
};
} }