about summary refs log tree commit diff stats
path: root/home-manager/soispha
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-02 14:57:01 +0200
committerSoispha <soispha@vhack.eu>2023-08-19 17:34:09 +0200
commit1194d84bda54c65b06b54d4fc5a6585aa0f7e9ec (patch)
tree32444d3526c52482d7e5b2bb0e4b0012fc470cb2 /home-manager/soispha
parentFix(hm/packages): Add iamb and remove nheko (diff)
downloadnixos-config-1194d84bda54c65b06b54d4fc5a6585aa0f7e9ec.zip
Feat(flake): Import the nixNeovim module
Diffstat (limited to 'home-manager/soispha')
-rw-r--r--home-manager/soispha/default.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/home-manager/soispha/default.nix b/home-manager/soispha/default.nix
index 10043080..252c8f0b 100644
--- a/home-manager/soispha/default.nix
+++ b/home-manager/soispha/default.nix
@@ -1,4 +1,8 @@
-{impermanence, ...}: let
+{
+  impermanence,
+  nixNeovim,
+  ...
+}: let
   # TODO actually use this in the user config
   username = "soispha";
   homeDirectory = "/home/${username}";
@@ -12,12 +16,14 @@
   # TODO add XDG_RUNTIME_DIR
 in {
   imports = [
-    impermanence.nixosModules.home-manager.impermanence
+    ./config
+    ./files
     ./impermanence
     ./packages
-    ./config
     ./wms
-    ./files
+
+    impermanence.nixosModules.home-manager.impermanence
+    nixNeovim.nixosModules.default
   ];
 
   # I don't know what this does, but I've seen it a lot online, so it should be good, right?