mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 16:17:46 +00:00
15 lines
231 B
Nix
15 lines
231 B
Nix
{ pkgs, lib, ... }: {
|
|
# Default programs
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
wget
|
|
git
|
|
];
|
|
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
};
|
|
|
|
programs.zsh.enable = true;
|
|
}
|