got it working again, but clanky
This commit is contained in:
parent
af6df24831
commit
7686df76ed
5 changed files with 40 additions and 14 deletions
|
|
@ -8,7 +8,7 @@
|
|||
{
|
||||
imports = [
|
||||
./kitty.nix
|
||||
./vscodium.nix
|
||||
./ranger.nix
|
||||
|
||||
];
|
||||
}
|
||||
|
|
|
|||
22
modules/terminal/ranger.nix
Normal file
22
modules/terminal/ranger.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
options = {
|
||||
terminal = {
|
||||
ranger.enable = lib.mkEnableOption "enable ranger";
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf config.terminal.ranger.enable {
|
||||
programs = {
|
||||
ranger = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue