diff options
author | sinanmohd <sinan@sinanmohd.com> | 2025-06-10 22:06:02 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2025-06-10 23:05:27 +0530 |
commit | aee9216af6875662235fd8839a827e724e53c845 (patch) | |
tree | c8c11981828c93f30475ed4dcc27aa9fd27696cb /home/common/modules/dev.nix | |
parent | a41037ef644dbacb3d577933fb3d93c210439b38 (diff) |
feat(flake/nixosModules): init
Diffstat (limited to 'home/common/modules/dev.nix')
-rw-r--r-- | home/common/modules/dev.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/home/common/modules/dev.nix b/home/common/modules/dev.nix new file mode 100644 index 0000000..6488aa8 --- /dev/null +++ b/home/common/modules/dev.nix @@ -0,0 +1,14 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ + git + sops + + linux-manual + man-pages + man-pages-posix + + nil + nodePackages.bash-language-server + ]; +} |