nix/prog: remove xplr

This commit is contained in:
Dmitriy Pleshevskiy 2022-08-19 14:28:45 +03:00
parent 754f0a0859
commit 8d4c99f8ae
Signed by: pleshevskiy
GPG key ID: 1B59187B161C0215
2 changed files with 0 additions and 29 deletions

View file

@ -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;
};
};
}

View file

@ -1 +0,0 @@
version = "0.18.0"