summaryrefslogtreecommitdiff
path: root/home/ebisu/nara/programs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-01-06 12:17:00 -0800
committerFuwn <[email protected]>2025-01-06 12:17:00 -0800
commite8da97634034898a8e4e21c7a867e43cb111ef65 (patch)
treefa3dcf2a290fc3c3f7de4b1f14d7727daf99e5fb /home/ebisu/nara/programs
parentnara: modules for home (diff)
downloadnixos-config-e8da97634034898a8e4e21c7a867e43cb111ef65.tar.xz
nixos-config-e8da97634034898a8e4e21c7a867e43cb111ef65.zip
nara: organise home programs
Diffstat (limited to 'home/ebisu/nara/programs')
-rw-r--r--home/ebisu/nara/programs/analysis.nix10
-rw-r--r--home/ebisu/nara/programs/default.nix6
-rw-r--r--home/ebisu/nara/programs/development.nix9
3 files changed, 25 insertions, 0 deletions
diff --git a/home/ebisu/nara/programs/analysis.nix b/home/ebisu/nara/programs/analysis.nix
new file mode 100644
index 0000000..98d1657
--- /dev/null
+++ b/home/ebisu/nara/programs/analysis.nix
@@ -0,0 +1,10 @@
+{ pkgs, ... }:
+{
+ home.packages = with pkgs; [
+ nixfmt-rfc-style
+ shfmt
+ shellcheck
+ mdformat
+ treefmt
+ ];
+}
diff --git a/home/ebisu/nara/programs/default.nix b/home/ebisu/nara/programs/default.nix
new file mode 100644
index 0000000..061a522
--- /dev/null
+++ b/home/ebisu/nara/programs/default.nix
@@ -0,0 +1,6 @@
+{
+ imports = [
+ ./analysis.nix
+ ./development.nix
+ ];
+}
diff --git a/home/ebisu/nara/programs/development.nix b/home/ebisu/nara/programs/development.nix
new file mode 100644
index 0000000..af2019e
--- /dev/null
+++ b/home/ebisu/nara/programs/development.nix
@@ -0,0 +1,9 @@
+{ pkgs, ... }:
+{
+ home.packages = with pkgs; [
+ nixd
+ nil
+ just
+ bun
+ ];
+}