diff options
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/flake.nix b/flake.nix index 5fddd222..24f6e5f1 100644 --- a/flake.nix +++ b/flake.nix @@ -30,6 +30,11 @@ url = "git+https://git.sils.li/ene/lib-sh.git"; flake = false; }; + river_init_lesser = { + url = "git+https://git.sils.li/ene/river-lesser-init.git"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + user_js = { url = "github:arkenfox/user.js"; flake = false; @@ -43,14 +48,18 @@ outputs = { self, nixpkgs, + home-manager, - neovim_config, - strip_js_comments, - user_js, impermanence, agenix, + + neovim_config, + user_js, snap-sync, + + strip_js_comments, shell-library, + river_init_lesser, ... } @ inputs: let sysLib = import ./lib {inherit pkgs shell-library;}; @@ -66,7 +75,7 @@ }; }; in { - nixosConfigurations = import ./flake/nixosConfigurations {inherit inputs system pkgs sysLib;}; + nixosConfigurations = import ./flake/nixosConfigurations {inherit inputs system pkgs sysLib river_init_lesser;}; packages."${system}" = { install = import ./bootstrap/install { inherit pkgs; |