chore: update flake inputs home-manager, nixpkgs,
All checks were successful
Flake checks / Check (pull_request) Successful in 14m46s

remove temporary input release-2311

• Updated input 'home-manager':
    'github:nix-community/home-manager/6761b8188b860f374b457eddfdb05c82eef9752f' (2023-12-10)
  → 'github:nix-community/home-manager/1488651d02c1a7a15e284210f0d380a62d8d8cef' (2023-12-17)
• Updated input 'nixpkgs':
    'github:nixos/nixpkgs/cf28ee258fd5f9a52de6b9865cdb93a1f96d09b7' (2023-12-12)
  → 'github:nixos/nixpkgs/1e2e384c5b7c50dbf8e9c441a9e58d85f408b01f' (2023-12-17)
• Removed input 'release-2311'
This commit is contained in:
teutat3s 2023-12-18 12:39:04 +01:00
parent 2e2ca2fc82
commit 7cc3a261ed
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1
4 changed files with 7 additions and 36 deletions

View file

@ -161,11 +161,11 @@
]
},
"locked": {
"lastModified": 1702195709,
"narHash": "sha256-+zRjWkm5rKqQ57PuLZ3JF3xi3vPMiOJzItb1m/43Cq4=",
"lastModified": 1702814678,
"narHash": "sha256-zDtO0jV2QLoddUJinLlTQrQqCUW3dPiIWOSYgg98T7E=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "6761b8188b860f374b457eddfdb05c82eef9752f",
"rev": "1488651d02c1a7a15e284210f0d380a62d8d8cef",
"type": "github"
},
"original": {
@ -236,11 +236,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1702346276,
"narHash": "sha256-eAQgwIWApFQ40ipeOjVSoK4TEHVd6nbSd9fApiHIw5A=",
"lastModified": 1702780907,
"narHash": "sha256-blbrBBXjjZt6OKTcYX1jpe9SRof2P9ZYWPzq22tzXAA=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "cf28ee258fd5f9a52de6b9865cdb93a1f96d09b7",
"rev": "1e2e384c5b7c50dbf8e9c441a9e58d85f408b01f",
"type": "github"
},
"original": {
@ -284,22 +284,6 @@
"type": "github"
}
},
"release-2311": {
"locked": {
"lastModified": 1702509556,
"narHash": "sha256-trm+c/erCSRe+Mi2fAaI975+jrU8uhmUznx8py6N9po=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "c15f414581b4eb4113eed52ed303a1e62771fb6f",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "release-23.11",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"agenix": "agenix",
@ -312,7 +296,6 @@
"nixos-flake": "nixos-flake",
"nixpkgs": "nixpkgs",
"nixpkgs-2205": "nixpkgs-2205",
"release-2311": "release-2311",
"triton-vmtools": "triton-vmtools",
"unstable": "unstable"
}

View file

@ -4,7 +4,6 @@
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
unstable.url = "github:nixos/nixpkgs/nixos-unstable";
release-2311.url = "github:nixos/nixpkgs/release-23.11";
nixpkgs-2205.url = "github:nixos/nixpkgs/nixos-22.05";
nix-darwin.url = "github:lnl7/nix-darwin/master";

View file

@ -9,15 +9,13 @@
nixpkgs.overlays = [
(final: prev:
let
release-2311 = import inputs.release-2311 {
unstable = import inputs.unstable {
system = prev.system;
};
in
{
element-themes = prev.callPackage ./pkgs/element-themes { inherit (inputs) element-themes; };
forgejo = release-2311.forgejo;
})
(import ./keycloak.nix)
];
});
};

View file

@ -1,9 +0,0 @@
final: prev: {
keycloak = prev.keycloak.overrideAttrs (oldAttrs: rec {
version = "999.0.0-SNAPSHOT";
src = prev.fetchzip {
url = "https://github.com/keycloak/keycloak/releases/download/nightly/keycloak-${version}.zip";
hash = "sha256-2rOhBmPXQy6HK3CtG/7E2EUK5zEWrJtSgBg6AMw2q3E=";
};
});
}