nix-config/modules/system/packages/default.nix
Bruno BELANYI 4c0c6a75b2 modules: system: packages: configure aliases
Disallow them by default, but make it configurable.
2022-09-30 08:59:27 +02:00

36 lines
777 B
Nix

# Common packages
{ config, lib, pkgs, ... }:
let
cfg = config.my.system.packages;
in
{
options.my.system.packages = with lib; {
enable = my.mkDisableOption "packages configuration";
allowAliases = mkEnableOption "allow package aliases";
allowUnfree = my.mkDisableOption "allow unfree packages";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
vim
wget
];
programs = {
vim.defaultEditor = true; # Modal editing is life
zsh = {
enable = true; # Use integrations
# Disable global compinit when a user config exists
enableGlobalCompInit = !config.my.home.zsh.enable;
};
};
nixpkgs.config = {
inherit (cfg) allowAliases allowUnfree;
};
};
}