mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
11 lines
171 B
Nix
11 lines
171 B
Nix
{ pkgs, lib, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
wget
|
|
];
|
|
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
};
|
|
}
|