remove devenv

This commit is contained in:
Adithya 2023-03-25 21:52:56 +05:30
parent 35e18a0069
commit a2345bb55d
Signed by: adtya
GPG key ID: 48FC9915FFD326D0
3 changed files with 1 additions and 10 deletions

View file

@ -17,14 +17,9 @@
url = "github:nix-community/home-manager/master"; url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs"; 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 = { nixosConfigurations = {
Skipper = nixpkgs.lib.nixosSystem rec { Skipper = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux"; system = "x86_64-linux";
@ -35,7 +30,6 @@
{ {
nixpkgs.overlays = [ nixpkgs.overlays = [
(import ./packages) # Overlay adding all custom packages (import ./packages) # Overlay adding all custom packages
(self: super: { devenv = devenv.packages.${system}.devenv; }) # Overlay for devenv.sh
]; ];
} }

View file

@ -8,7 +8,6 @@ in
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [
devenv
git-crypt git-crypt
lazydocker lazydocker
nixpkgs-fmt nixpkgs-fmt

View file

@ -1,11 +1,9 @@
{ ... }: { { ... }: {
nix.settings = { nix.settings = {
substituters = [ substituters = [
"https://devenv.cachix.org"
"https://nix-community.cachix.org/" "https://nix-community.cachix.org/"
]; ];
trusted-public-keys = [ trusted-public-keys = [
"devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
]; ];
auto-optimise-store = true; auto-optimise-store = true;