chore(deps): update to nixos 25.11

This commit is contained in:
Guz
2026-01-01 19:28:17 -03:00
parent 0a42701e79
commit 2d4b36cf96
2 changed files with 45 additions and 24 deletions

View File

@@ -1,10 +1,10 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager/release-25.05";
url = "github:nix-community/home-manager/release-25.11";
inputs.nixpkgs.follows = "nixpkgs";
};
@@ -30,6 +30,10 @@
dot013-nix = {
url = "github:dot013/nix";
};
# tangled = {
# url = "git+https://tangled.org/tangled.org/core";
# };
};
outputs = {
self,
@@ -37,7 +41,24 @@
home-manager,
nixpkgs-unstable,
...
} @ inputs: {
} @ inputs: let
systems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
forAllSystems = f:
nixpkgs.lib.genAttrs systems (
system: let
pkgs = import nixpkgs {inherit system;};
in
f {
inherit pkgs;
inherit (pkgs) lib;
}
);
in {
nixosConfigurations = {
spacestation = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux";