broke up files/shell module

This commit is contained in:
John Lancaster
2026-02-16 13:50:31 -06:00
parent e84cff1f0c
commit 1b1a4767a9
3 changed files with 21 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
{
flake.homeModules.files = { pkgs, ... }:
{
home.packages = with pkgs; [
gdu
lf
];
};
}

View File

@@ -0,0 +1,10 @@
{ inputs, ... }:
{
flake.homeModules.shell = {
imports = with inputs.self.homeModules; [
zsh
files
docker
];
};
}

View File

@@ -4,14 +4,13 @@
{ pkgs, ... } :
{
imports = with inputs.self.homeModules; [
rebuild
john
ssh
git
rebuild
shell
ghostty
sops
zsh
docker
];
};