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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -4,14 +4,13 @@
|
|||||||
{ pkgs, ... } :
|
{ pkgs, ... } :
|
||||||
{
|
{
|
||||||
imports = with inputs.self.homeModules; [
|
imports = with inputs.self.homeModules; [
|
||||||
|
rebuild
|
||||||
john
|
john
|
||||||
ssh
|
ssh
|
||||||
git
|
git
|
||||||
rebuild
|
shell
|
||||||
ghostty
|
ghostty
|
||||||
sops
|
sops
|
||||||
zsh
|
|
||||||
docker
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user