Remove master overlay
agy is now available in unstable
This commit is contained in:
23
flake.lock
generated
23
flake.lock
generated
@@ -204,11 +204,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1780943742,
|
"lastModified": 1781009359,
|
||||||
"narHash": "sha256-01bTMR9ZPG+uxPaZBeOwagg5uxIaFYs2/3YIrOX+bCA=",
|
"narHash": "sha256-w/mZkRscTatf8NWyUstli8ROzM/eopxZzi0WRjoeYkU=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "df39142474950e42d5fc3bf2fef9d6c62abbe8d7",
|
"rev": "c58ead12efcac436afffa93a22099a5595eb4157",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -266,22 +266,6 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nixpkgs-master": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1780999776,
|
|
||||||
"narHash": "sha256-NOkSLf3ACyzdfqHXeWJGSfDzrAHhQ/KUKjeZZYzTw4M=",
|
|
||||||
"owner": "nixos",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"rev": "4743e51d1866167bd26e1241096d7aa52d4b29fc",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "nixos",
|
|
||||||
"ref": "master",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"darwin": "darwin",
|
"darwin": "darwin",
|
||||||
@@ -291,7 +275,6 @@
|
|||||||
"jail-nix": "jail-nix",
|
"jail-nix": "jail-nix",
|
||||||
"nix-homebrew": "nix-homebrew",
|
"nix-homebrew": "nix-homebrew",
|
||||||
"nixpkgs": "nixpkgs",
|
"nixpkgs": "nixpkgs",
|
||||||
"nixpkgs-master": "nixpkgs-master",
|
|
||||||
"systems": "systems_2",
|
"systems": "systems_2",
|
||||||
"vscode-server": "vscode-server"
|
"vscode-server": "vscode-server"
|
||||||
}
|
}
|
||||||
|
|||||||
26
flake.nix
26
flake.nix
@@ -3,7 +3,6 @@
|
|||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
nixpkgs-master.url = "github:nixos/nixpkgs/master";
|
|
||||||
systems.url = "github:nix-systems/default";
|
systems.url = "github:nix-systems/default";
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager";
|
url = "github:nix-community/home-manager";
|
||||||
@@ -33,7 +32,6 @@
|
|||||||
{
|
{
|
||||||
self,
|
self,
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
nixpkgs-master,
|
|
||||||
systems,
|
systems,
|
||||||
home-manager,
|
home-manager,
|
||||||
vscode-server,
|
vscode-server,
|
||||||
@@ -43,20 +41,6 @@
|
|||||||
let
|
let
|
||||||
homeManagerUser = "artem";
|
homeManagerUser = "artem";
|
||||||
eachSystem = nixpkgs.lib.genAttrs (import systems);
|
eachSystem = nixpkgs.lib.genAttrs (import systems);
|
||||||
overlay-master = _: prev: {
|
|
||||||
inherit
|
|
||||||
(import nixpkgs-master {
|
|
||||||
system = prev.stdenv.hostPlatform.system;
|
|
||||||
config = {
|
|
||||||
allowUnfree = true;
|
|
||||||
}
|
|
||||||
// nixpkgs.lib.optionalAttrs (prev.stdenv.hostPlatform.system == "x86_64-darwin") {
|
|
||||||
allowDeprecatedx86_64Darwin = true;
|
|
||||||
};
|
|
||||||
})
|
|
||||||
antigravity-cli
|
|
||||||
;
|
|
||||||
};
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
checks = eachSystem (system: {
|
checks = eachSystem (system: {
|
||||||
@@ -83,7 +67,6 @@
|
|||||||
homeConfigurations."${homeManagerUser}@deimos" = home-manager.lib.homeManagerConfiguration {
|
homeConfigurations."${homeManagerUser}@deimos" = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
overlays = [ overlay-master ];
|
|
||||||
};
|
};
|
||||||
extraSpecialArgs.primaryUser = homeManagerUser;
|
extraSpecialArgs.primaryUser = homeManagerUser;
|
||||||
modules = [
|
modules = [
|
||||||
@@ -97,7 +80,6 @@
|
|||||||
homeConfigurations."${homeManagerUser}@mars" = home-manager.lib.homeManagerConfiguration {
|
homeConfigurations."${homeManagerUser}@mars" = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
system = "x86_64-darwin";
|
system = "x86_64-darwin";
|
||||||
overlays = [ overlay-master ];
|
|
||||||
config.allowDeprecatedx86_64Darwin = true;
|
config.allowDeprecatedx86_64Darwin = true;
|
||||||
};
|
};
|
||||||
extraSpecialArgs = {
|
extraSpecialArgs = {
|
||||||
@@ -122,10 +104,9 @@
|
|||||||
inputs.fw_nix.nixosModules.futureware
|
inputs.fw_nix.nixosModules.futureware
|
||||||
inputs.nix-homebrew.darwinModules.nix-homebrew
|
inputs.nix-homebrew.darwinModules.nix-homebrew
|
||||||
./hosts/mars/darwin.nix
|
./hosts/mars/darwin.nix
|
||||||
(_: {
|
{
|
||||||
nixpkgs.overlays = [ overlay-master ];
|
|
||||||
nixpkgs.config.allowDeprecatedx86_64Darwin = true;
|
nixpkgs.config.allowDeprecatedx86_64Darwin = true;
|
||||||
})
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -145,9 +126,6 @@
|
|||||||
inputs.fw_nix.nixosModules.sshd
|
inputs.fw_nix.nixosModules.sshd
|
||||||
inputs.fw_nix.nixosModules.futureware
|
inputs.fw_nix.nixosModules.futureware
|
||||||
./hosts/deimos/nixos.nix
|
./hosts/deimos/nixos.nix
|
||||||
(_: {
|
|
||||||
nixpkgs.overlays = [ overlay-master ];
|
|
||||||
})
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user