feat: Split the config into default and withPackages

This commit is contained in:
Jiří Štefka 2024-11-20 10:26:23 +01:00
parent 1c27127313
commit 9bd687ef8c
Signed by: jiriks74
GPG key ID: 1D5E30D3DB2264DE
3 changed files with 263 additions and 242 deletions

21
packages.nix Normal file
View file

@ -0,0 +1,21 @@
{
pkgs,
...
}: {
home.packages = with pkgs; [
# asciinema
asciinema # Terminal recording
asciinema-agg # Convert asciinema recordings
libnotify # Notifications
websocat # For asciinema v2 streams
# ^ asciinema
# useful dev/everyday tools
encfs
file
htop-vim
tldr
tree
# ^ useful dev/everyday tools
];
}