Compare commits
3 commits
496ad4dfc1
...
9f9ebb49c9
Author | SHA1 | Date | |
---|---|---|---|
9f9ebb49c9 | |||
9c16918a1f | |||
4534ca5cf0 |
3 changed files with 33 additions and 10 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 |
|
@ -119,6 +119,7 @@
|
||||||
ledger-live-desktop
|
ledger-live-desktop
|
||||||
nodejs_22
|
nodejs_22
|
||||||
pnpm
|
pnpm
|
||||||
|
komikku
|
||||||
];
|
];
|
||||||
|
|
||||||
# Custom services
|
# Custom services
|
||||||
|
|
|
@ -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
|
||||||
|
@ -58,12 +59,33 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# Enable fish
|
# Enable fish
|
||||||
fish.enable = true;
|
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" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# GPG setup
|
|
||||||
services.gpg-agent = {
|
|
||||||
enable = true;
|
|
||||||
pinentry.package = pkgs.pinentry-curses;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue