broke up files/shell module
This commit is contained in:
9
modules/home-manager/files.nix
Normal file
9
modules/home-manager/files.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
flake.homeModules.files = { pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
gdu
|
||||
lf
|
||||
];
|
||||
};
|
||||
}
|
||||
10
modules/home-manager/shell.nix
Normal file
10
modules/home-manager/shell.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ inputs, ... }:
|
||||
{
|
||||
flake.homeModules.shell = {
|
||||
imports = with inputs.self.homeModules; [
|
||||
zsh
|
||||
files
|
||||
docker
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user