16 lines
252 B
Nix
16 lines
252 B
Nix
|
{ config, pkgs, inputs, ... }:
|
||
|
{
|
||
|
services.gpg-agent = {
|
||
|
enable = true;
|
||
|
pinentryFlavor = "curses";
|
||
|
};
|
||
|
home.packages = with pkgs; [
|
||
|
atop
|
||
|
btrfs-progs
|
||
|
glibcLocales
|
||
|
lm_sensors
|
||
|
nerdfonts
|
||
|
powertop
|
||
|
wirelesstools
|
||
|
];
|
||
|
}
|