summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-23 03:24:06 -0700
committerFuwn <[email protected]>2024-10-23 03:24:06 -0700
commitff39515d5615aa53ecd538eae6733859c4df8e8a (patch)
tree04f651cc6eb46b3ea5ee8bd1968eacee6a77c0b5 /home
parenthome: move system subset to shared (diff)
downloadnixos-config-ff39515d5615aa53ecd538eae6733859c4df8e8a.tar.xz
nixos-config-ff39515d5615aa53ecd538eae6733859c4df8e8a.zip
home: move editor subset to shared
Diffstat (limited to 'home')
-rw-r--r--home/ebisu/core/editor/default.nix8
-rw-r--r--home/ebisu/shared/default.nix1
-rw-r--r--home/ebisu/shared/editor.nix11
3 files changed, 13 insertions, 7 deletions
diff --git a/home/ebisu/core/editor/default.nix b/home/ebisu/core/editor/default.nix
index 0117e94..4d5e6d2 100644
--- a/home/ebisu/core/editor/default.nix
+++ b/home/ebisu/core/editor/default.nix
@@ -1,15 +1,9 @@
-{ inputs, pkgs, ... }:
+{ pkgs, ... }:
{
# imports = [ ./vscode-fhs.nix ];
home.packages = with pkgs; [
- emacs
- neovide
- # jetbrains.clion
- lunarvim
zed-editor
vscode
- inputs.nix-microchip.packages.${pkgs.system}.mplab-x
- arduino-ide
];
}
diff --git a/home/ebisu/shared/default.nix b/home/ebisu/shared/default.nix
index e21ceea..c550742 100644
--- a/home/ebisu/shared/default.nix
+++ b/home/ebisu/shared/default.nix
@@ -4,6 +4,7 @@
./scripting
./system
./utility
+ ./editor.nix
./language.nix
];
}
diff --git a/home/ebisu/shared/editor.nix b/home/ebisu/shared/editor.nix
new file mode 100644
index 0000000..9339e4e
--- /dev/null
+++ b/home/ebisu/shared/editor.nix
@@ -0,0 +1,11 @@
+{ pkgs, ... }:
+{
+ home.packages = with pkgs; [
+ emacs
+ neovide
+ # jetbrains.clion
+ lunarvim
+ inputs.nix-microchip.packages.${pkgs.system}.mplab-x
+ arduino-ide
+ ];
+}