diff --git a/.github/assets/evangelion_unit-01.png b/.github/assets/evangelion_unit-01.png deleted file mode 100644 index 35ed449..0000000 Binary files a/.github/assets/evangelion_unit-01.png and /dev/null differ diff --git a/hosts/wano/configuration.nix b/hosts/wano/configuration.nix index 449b009..bdfd532 100644 --- a/hosts/wano/configuration.nix +++ b/hosts/wano/configuration.nix @@ -119,7 +119,6 @@ ledger-live-desktop nodejs_22 pnpm - komikku ]; # Custom services diff --git a/hosts/wano/home.nix b/hosts/wano/home.nix index 1bf26ed..1f03614 100644 --- a/hosts/wano/home.nix +++ b/hosts/wano/home.nix @@ -17,10 +17,9 @@ # The home.packages option allows you to install Nix packages into your # environment. - home.packages = with pkgs; [ - gnupg - pinentry-curses - hyprpaper + home.packages = [ + pkgs.gnupg + pkgs.pinentry-curses ]; # Home Manager is pretty good at managing dotfiles. The primary way to manage @@ -59,33 +58,12 @@ }; # Enable fish - fish = { - 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" ]; - }; - }; - }; + fish.enable = true; + }; + # GPG setup + services.gpg-agent = { + enable = true; + pinentry.package = pkgs.pinentry-curses; + }; }