Revert "Switch to unstable"

This reverts commit d0fa636f97.
This commit is contained in:
2024-05-24 00:05:28 +02:00
parent e54e88e1e9
commit ad48cd7147
9 changed files with 32 additions and 32 deletions

View File

@@ -3,8 +3,8 @@
inputs = {
# nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
nixpkgs-stable.url = "github:nixos/nixpkgs?ref=nixos-23.11";
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-23.11";
nixpkgs-unstable.url = "github:nixos/nixpkgs?ref=nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager?ref=release-23.11";
inputs.nixpkgs.follows = "nixpkgs";
@@ -17,7 +17,7 @@
outputs =
{ self
, nixpkgs
, nixpkgs-stable
, nixpkgs-unstable
, sops-nix
, notlistener
, ghettoptt
@@ -26,8 +26,8 @@
let
system = "x86_64-linux";
user = "torjus";
overlay-stable = final: prev: {
stable = import nixpkgs-stable {
overlay-unstable = final: prev: {
unstable = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
};
@@ -46,7 +46,7 @@
modules = [
({ config, pkgs, ... }: {
nixpkgs.overlays = [
overlay-stable
overlay-unstable
ghettoptt.overlays.default
];
})
@@ -60,7 +60,7 @@
modules = [
({ config, pkgs, ... }: {
nixpkgs.overlays = [
overlay-stable
overlay-unstable
notlistener.overlays.default
ghettoptt.overlays.default
];