summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix16
1 files changed, 10 insertions, 6 deletions
diff --git a/flake.nix b/flake.nix
index 3d89e8f..e964cbd 100644
--- a/flake.nix
+++ b/flake.nix
@@ -2,25 +2,29 @@
description = "Nixos config flake";
inputs = {
- nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
+ nixpkgs.url = "github:nixos/nixpkgs/nixos-26.05";
home-manager = {
url = "github:nix-community/home-manager";
- inputs.nixpkgs.follows = "nixpkgs";
};
nixvim = {
url = "github:nix-community/nixvim";
- # If using a stable channel you can use `url = "github:nix-community/nixvim/nixos-<version>"`
- inputs.nixpkgs.follows = "nixpkgs";
};
};
- outputs = { nixpkgs, home-manager, nixvim, ... }@inputs:
+ outputs =
+ {
+ nixpkgs,
+ home-manager,
+ nixvim,
+ ...
+ }@inputs:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
- in {
+ in
+ {
nixosConfigurations.ozpv = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [