chore: bump dependencies
This commit is contained in:
parent
9ab64ca35f
commit
83280f9038
7 changed files with 22 additions and 94 deletions
|
|
@ -27,6 +27,5 @@
|
|||
pkgs.hexedit
|
||||
pkgs.gdu # fast disk usage analyzer with console interface written in go
|
||||
pkgs.duf # disk usage/free utility - a better 'df' alternative
|
||||
pkgs.nvd # Nix/NixOS package version diff tool
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
{
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
let
|
||||
common = import ./common.nix;
|
||||
in
|
||||
{
|
||||
lib.mkIf (config.bchmnn.collections.shell.enable) {
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
};
|
||||
|
|
@ -28,7 +30,6 @@ in
|
|||
generateCaches = true;
|
||||
man-db.enable = true;
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
|
|
|||
|
|
@ -1,8 +1,10 @@
|
|||
{ lib, ... }:
|
||||
{
|
||||
options.bchmnn = with lib; {
|
||||
|
||||
collections = {
|
||||
shell = {
|
||||
enable = mkEnableOption "shell";
|
||||
};
|
||||
cli-utils = {
|
||||
enable = mkEnableOption "cli-utils";
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue