35 lines
532 B
Nix
35 lines
532 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# Config for client devices, but not necessarily a full desktop environment.
|
|
|
|
# User packages
|
|
users.users.agatha.packages = with pkgs; [
|
|
android-tools
|
|
broot
|
|
colmena
|
|
exiftool
|
|
ffmpeg
|
|
flac
|
|
hyperfine
|
|
just
|
|
magic-wormhole
|
|
neofetch
|
|
nil
|
|
pfetch
|
|
pridefetch
|
|
rink
|
|
sshfs
|
|
whois
|
|
wireguard-tools
|
|
yt-dlp
|
|
];
|
|
|
|
home-manager.users.agatha = {
|
|
programs.direnv.enable = true;
|
|
home.sessionVariables = {
|
|
"DIRENV_LOG_FORMAT" = "";
|
|
};
|
|
|
|
};
|
|
}
|