feat: add devenv

This commit is contained in:
Glen Goodwin 2023-06-07 01:03:26 -04:00
parent cc4f3398ff
commit 327db2d36c
5 changed files with 199 additions and 6 deletions

View file

@ -15,9 +15,14 @@
inputs.nixpkgs.follows = "nixpkgs";
};
devenv = {
url = "github:cachix/devenv/main";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs @ { self, nixpkgs, home-manager, hyprland, ... }:
outputs = inputs @ { self, nixpkgs, home-manager, hyprland, devenv, ... }:
let
system = "x86_64-linux";
@ -35,7 +40,7 @@
nixosConfigurations = (
import ./hosts {
inherit (nixpkgs) lib;
inherit inputs user system home-manager hyprland;
inherit inputs user system home-manager hyprland devenv;
}
);
};