summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix17
1 files changed, 6 insertions, 11 deletions
diff --git a/flake.nix b/flake.nix
index a3fac75..45aec5c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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;
};
};