Electron 24 is gone 🦀

This commit is contained in:
Agatha Lovelace 2023-11-09 20:07:06 +01:00
parent e08b57898a
commit 1babb57af0
Signed by: sorceress
GPG Key ID: 01D0B3AB10CED4F8
4 changed files with 15 additions and 19 deletions

View File

@ -24,9 +24,6 @@
## Other ## Other
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# Flakes # Flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];

View File

@ -23,8 +23,6 @@
bspm = final.callPackage ../../../common/pkgs/bspm.nix { }; bspm = final.callPackage ../../../common/pkgs/bspm.nix { };
polybar-spotify = polybar-spotify =
final.callPackage ../../../common/pkgs/polybar-spotify.nix { }; final.callPackage ../../../common/pkgs/polybar-spotify.nix { };
element-desktop =
prev.element-desktop.override { electron = prev.electron_24; };
}) })
]; ];
@ -57,7 +55,7 @@
nitrogen nitrogen
nmap nmap
obs-studio obs-studio
obsidian unstable.obsidian
pfetch pfetch
polybar-spotify polybar-spotify
pridefetch pridefetch

View File

@ -242,11 +242,11 @@
"rust-overlay": "rust-overlay" "rust-overlay": "rust-overlay"
}, },
"locked": { "locked": {
"lastModified": 1697893116, "lastModified": 1699520217,
"narHash": "sha256-KVA6ybNgqVpM4JEkvJE5ujucqvAUCsQGdxZYIasRp/8=", "narHash": "sha256-+b4R/GUQrRBGGpmDXna8w28ueeK7FhIYhQTSHqFJuqo=",
"owner": "helix-editor", "owner": "helix-editor",
"repo": "helix", "repo": "helix",
"rev": "31f50bf5bf0d49af7359533e0865e878184c5225", "rev": "6ab774da0b473c36a437d90abcdac3558353d32e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -465,11 +465,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1697915759, "lastModified": 1699343069,
"narHash": "sha256-WyMj5jGcecD+KC8gEs+wFth1J1wjisZf8kVZH13f1Zo=", "narHash": "sha256-s7BBhyLA6MI6FuJgs4F/SgpntHBzz40/qV0xLPW6A1Q=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "51d906d2341c9e866e48c2efcaac0f2d70bfd43e", "rev": "ec750fd01963ab6b20ee1f0cb488754e8036d89d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -524,11 +524,11 @@
}, },
"nixpkgs_5": { "nixpkgs_5": {
"locked": { "locked": {
"lastModified": 1697777081, "lastModified": 1699291058,
"narHash": "sha256-n2vQARhKevRGyeo+LAa8g+CdUQsdH/caNk8jnylcPhY=", "narHash": "sha256-5ggduoaAMPHUy4riL+OrlAZE14Kh7JWX4oLEs22ZqfU=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "679cadfdfed2b90311a247b2d6ef6dfd3d6cab73", "rev": "41de143fda10e33be0f47eab2bfe08a50f234267",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -617,11 +617,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1693075322, "lastModified": 1699469086,
"narHash": "sha256-O/qmWiE23pzYMSKNhA74jfY1D5TyiJrHx35PYkRx9Gs=", "narHash": "sha256-FC350WZKaTh+b0c3THfrJW9WNu1Y0oC9Y9F5z32gIFk=",
"owner": "the-argus", "owner": "the-argus",
"repo": "spicetify-nix", "repo": "spicetify-nix",
"rev": "78495ade242ad155942c2e33e3930e4a05963f13", "rev": "f395fe14de6d934159d3aa5cc904bbb41f1ea053",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -97,6 +97,7 @@
nixpkgs = import nixpkgs rec { nixpkgs = import nixpkgs rec {
system = "x86_64-linux"; system = "x86_64-linux";
config.allowUnfree = true;
overlays = [ overlays = [
(final: prev: { (final: prev: {
helix = let helix-pkgs = helix.packages.${final.system}; helix = let helix-pkgs = helix.packages.${final.system};
@ -116,7 +117,7 @@
ccase = ccase.packages.${final.system}.default; ccase = ccase.packages.${final.system}.default;
# Unstable packages # Unstable packages
unstable = import nixpkgs-unstable { inherit system; }; unstable = import nixpkgs-unstable { inherit system config; };
}) })
colmena.overlay colmena.overlay
]; ];