diff options
author | sefidel <contact@sefidel.net> | 2023-08-12 18:30:06 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-08-12 18:40:22 +0900 |
commit | 4bdee7a33fe52990a31c3e91e4a2d6a60e389221 (patch) | |
tree | ac7338752829f324a5ae74198b8c012ba389b28e /home/default.nix | |
parent | 9af4ff236b03bd94139042aca0e517b7d8ffefcb (diff) | |
download | nixrc-4bdee7a33fe52990a31c3e91e4a2d6a60e389221.tar.gz nixrc-4bdee7a33fe52990a31c3e91e4a2d6a60e389221.zip |
feat(home): add helix as overlay
Diffstat (limited to 'home/default.nix')
-rw-r--r-- | home/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/default.nix b/home/default.nix index 1c4797d..35ced24 100644 --- a/home/default.nix +++ b/home/default.nix @@ -5,7 +5,7 @@ "sefidel@alpha" = self.lib.mkHome { username = "sefidel"; hostname = "alpha"; - pkgs = import unstable { system = "x86_64-linux"; overlays = with inputs; [ rust.overlays.default neovim.overlay ]; }; + pkgs = import unstable { system = "x86_64-linux"; overlays = with inputs; [ rust.overlays.default neovim.overlay helix.overlays.default ]; }; extraModules = [ ./profiles/populate.nix |