separated programs directory
This commit is contained in:
13
modules/home-manager/profiles/base.nix
Normal file
13
modules/home-manager/profiles/base.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{ inputs, pkgs, ... }:
|
||||
{
|
||||
flake.homeModules.base = { pkgs, ... }:
|
||||
{
|
||||
imports = with inputs.self.homeModules; [
|
||||
rebuild
|
||||
ssh
|
||||
sops
|
||||
git
|
||||
shell-tools
|
||||
];
|
||||
};
|
||||
}
|
||||
15
modules/home-manager/profiles/files.nix
Normal file
15
modules/home-manager/profiles/files.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
flake.homeModules.files = { pkgs, ... }:
|
||||
{
|
||||
programs.lf.enable = true;
|
||||
programs.lf.cmdKeybindings = {
|
||||
"D" = "delete";
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
gdu
|
||||
lf
|
||||
# TODO: find a CLI file editor that's not insane
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user