remove unused rycee flake input

it was previously used for browser addons: i've since moved those
in-house for technical reasons.
This commit is contained in:
colin 2022-11-01 16:07:57 -07:00
parent 03ea7e7fa5
commit 5ff47b3719
2 changed files with 0 additions and 24 deletions

View File

@ -120,27 +120,10 @@
"mobile-nixos": "mobile-nixos",
"nixpkgs": "nixpkgs",
"nixpkgs-stable": "nixpkgs-stable",
"rycee": "rycee",
"sops-nix": "sops-nix",
"uninsane": "uninsane"
}
},
"rycee": {
"flake": false,
"locked": {
"lastModified": 1667275379,
"narHash": "sha256-TtXa6awgpbecT980L1a9jWI3uEU039dl7EBVY1enBkQ=",
"owner": "rycee",
"repo": "nur-expressions",
"rev": "f4bf327807f86c85e85050101467835a65754b51",
"type": "gitlab"
},
"original": {
"owner": "rycee",
"repo": "nur-expressions",
"type": "gitlab"
}
},
"sops-nix": {
"inputs": {
"nixpkgs": [

View File

@ -14,10 +14,6 @@
url = "github:nix-community/home-manager/release-22.05";
inputs.nixpkgs.follows = "nixpkgs";
};
rycee = {
url = "gitlab:rycee/nur-expressions";
flake = false;
};
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
@ -35,7 +31,6 @@
nixpkgs-stable,
mobile-nixos,
home-manager,
rycee,
sops-nix,
impermanence,
uninsane
@ -66,7 +61,6 @@
{
nixpkgs.overlays = [
(import "${mobile-nixos}/overlay/overlay.nix")
(import "${rycee}/overlay.nix")
uninsane.overlay
(import ./pkgs/overlay.nix)
(next: prev: rec {
@ -120,7 +114,6 @@
allPkgsFor = sys: (customPackagesFor sys sys) // {
nixpkgs = nixpkgsFor sys sys;
uninsane = uninsane.packages."${sys}";
rycee = (import "${rycee}/default.nix" { pkgs = nixpkgsFor sys sys; });
};
in {
x86_64-linux = allPkgsFor "x86_64-linux";