diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-06-06 23:35:03 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-06-06 23:35:03 +0200 |
| commit | 64c9728e0c73e35787b2e69393a69c9d2815f936 (patch) | |
| tree | 05440a89e9d84e14f7e35d0a3044afa7bd605530 /flake.nix | |
| parent | 32be6013555754aab30080e70792eea0a936c2a9 (diff) | |
update to 26.05
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 17 |
1 files changed, 6 insertions, 11 deletions
@@ -2,40 +2,35 @@ description = "n8 NixOS Configuration Flake"; inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11"; + nixpkgs.url = "github:nixos/nixpkgs/nixos-26.05"; nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; home-manager = { - url = "github:/nix-community/home-manager/release-25.11"; - inputs.nixpkgs.follows = "nixpkgs"; + url = "github:/nix-community/home-manager/release-26.05"; }; nixvim = { - url = "github:/nix-community/nixvim/nixos-25.11"; - inputs.nixpkgs.follows = "nixpkgs"; + url = "github:/nix-community/nixvim/nixos-26.05"; }; webtray = { url = "git+https://git.nathanreiner.xyz/webtray"; - inputs.nixpkgs.follows = "nixpkgs-unstable"; }; wofi-pass = { url = "git+https://git.nathanreiner.xyz/wofi-pass"; - inputs.nixpkgs.follows = "nixpkgs"; }; blueprint = { url = "git+https://git.nathanreiner.xyz/blueprint"; - inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { nixpkgs, nixpkgs-unstable, webtray, ... }@attrs: let - system = "x86_64-linux"; + localSystem = { system = "x86_64-linux"; }; pkgs = import nixpkgs { - stdenv.hostPlatform = { inherit system; }; + inherit localSystem; }; overlay-unstable = final: prev: { unstable = import nixpkgs-unstable { - system = prev.stdenv.hostPlatform.system; + inherit localSystem; config.allowUnfree = true; }; }; |