mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
18 lines
380 B
Nix
18 lines
380 B
Nix
{ lib, config, pkgs, ... }:
|
|
{
|
|
options.swarselmodules.server.packages = lib.mkEnableOption "enable packages on server";
|
|
config = lib.mkIf config.swarselmodules.server.packages {
|
|
environment.systemPackages = with pkgs; [
|
|
gnupg
|
|
nvd
|
|
nix-output-monitor
|
|
ssh-to-age
|
|
git
|
|
emacs
|
|
vim
|
|
sops
|
|
swarsel-deploy
|
|
tmux
|
|
];
|
|
};
|
|
}
|