We ball (returning to unstable)

This commit is contained in:
alisceon 2026-04-09 11:38:52 +02:00
parent 4d8de41daf
commit abe8ff6eff
7 changed files with 40 additions and 126 deletions

View file

@ -2,22 +2,17 @@
description = "NixOS configuration for all hosts";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nur = {
url = "github:nix-community/NUR";
inputs.nixpkgs.follows = "nixpkgs";
};
nur-unstable = {
url = "github:nix-community/NUR";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
home-manager = {
url = "github:nix-community/home-manager/release-25.11";
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
stylix = {
url = "github:danth/stylix";
url = "github:nix-community/stylix";
inputs.nixpkgs.follows = "nixpkgs";
};
noctalia = {
@ -35,7 +30,6 @@
outputs = inputs @ {
self,
nixpkgs,
nixpkgs-unstable,
...
}:
let
@ -53,15 +47,8 @@
overlays = [ inputs.nur.overlays.default ];
};
pkgs-unstable = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
flake.setFlakeRegistry = true;
overlays = [ inputs.nur-unstable.overlays.default ];
};
sharedSpecialArgs = {
inherit pkgs-unstable repoLocalPath;
inherit repoLocalPath;
repoRoot = self;
};
@ -73,7 +60,7 @@
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = {
inherit pkgs pkgs-unstable repoLocalPath;
inherit pkgs repoLocalPath;
repoRoot = self;
};
home-manager.backupFileExtension = "backup";