remove devenv
This commit is contained in:
parent
35e18a0069
commit
a2345bb55d
3 changed files with 1 additions and 10 deletions
|
@ -17,14 +17,9 @@
|
|||
url = "github:nix-community/home-manager/master";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
devenv = {
|
||||
url = "github:cachix/devenv/latest";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = { self, devenv, nixpkgs, home-manager, impermanence, lanzaboote }@inputs: {
|
||||
outputs = { self, nixpkgs, home-manager, impermanence, lanzaboote }@inputs: {
|
||||
nixosConfigurations = {
|
||||
Skipper = nixpkgs.lib.nixosSystem rec {
|
||||
system = "x86_64-linux";
|
||||
|
@ -35,7 +30,6 @@
|
|||
{
|
||||
nixpkgs.overlays = [
|
||||
(import ./packages) # Overlay adding all custom packages
|
||||
(self: super: { devenv = devenv.packages.${system}.devenv; }) # Overlay for devenv.sh
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
@ -8,7 +8,6 @@ in
|
|||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
devenv
|
||||
git-crypt
|
||||
lazydocker
|
||||
nixpkgs-fmt
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
{ ... }: {
|
||||
nix.settings = {
|
||||
substituters = [
|
||||
"https://devenv.cachix.org"
|
||||
"https://nix-community.cachix.org/"
|
||||
];
|
||||
trusted-public-keys = [
|
||||
"devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw="
|
||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||
];
|
||||
auto-optimise-store = true;
|
||||
|
|
Loading…
Reference in a new issue