This commit is contained in:
Sakooooo 2023-07-30 14:39:26 +03:00
parent e9b2ed4b33
commit e4b192b2c3
Signed by: sako
GPG key ID: 3FD715D87D7725E0
3 changed files with 0 additions and 18 deletions

View file

@ -76,7 +76,6 @@
zsh.enable = true;
newsboat.enable = true;
ranger.enable = true;
pipe-viewer.enable = true;
};
media = {
mpd.enable = true;

View file

@ -4,6 +4,5 @@
./zsh
./newsboat
./ranger
./pipe-viewer
];
}

View file

@ -1,16 +0,0 @@
{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.shell.pipe-viewer;
in
{
options.modules.shell.pipe-viewer = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
pipe-viewer
];
};
}