nix/prog: remove xplr
This commit is contained in:
parent
754f0a0859
commit
8d4c99f8ae
2 changed files with 0 additions and 29 deletions
|
@ -1,28 +0,0 @@
|
|||
{ lib, config, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.progs.xplr;
|
||||
in
|
||||
{
|
||||
options.progs.xplr = {
|
||||
enable = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = "Add and configure xplr, a terminal UI based file explorer";
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
xplr # a terminal UI based file explorer
|
||||
];
|
||||
|
||||
|
||||
xdg.configFile = {
|
||||
"xplr/init.lua".source = ./init.lua;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
version = "0.18.0"
|
Loading…
Reference in a new issue