From e024c854520d02bb6eb58e9a97801f506b76ce64 Mon Sep 17 00:00:00 2001 From: Kabbone Date: Sat, 26 Nov 2022 20:30:05 +0100 Subject: [PATCH] flake: update --- flake.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index fec720b..4443266 100644 --- a/flake.nix +++ b/flake.nix @@ -12,6 +12,7 @@ inputs = # All flake references used to build my NixOS setup. These are dependencies. { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; # Nix Packages + nixpkgs-stable.url = "github:NixOS/nIxpkgs/nixos-22.05"; nixos-hardware.url = "github:NixOS/nixos-hardware/master"; home-manager = { # User Package Management @@ -29,7 +30,7 @@ }; }; - outputs = inputs @ { self, nixpkgs, nixos-hardware, home-manager, nur, hyprland, ... }: # Function that tells my flake which to use and what do what to do with the dependencies. + outputs = inputs @ { self, nixpkgs, nixpkgs-stable, nixos-hardware, home-manager, nur, hyprland, ... }: # Function that tells my flake which to use and what do what to do with the dependencies. let # Variables that can be used in the config files user = "kabbone"; location = "$HOME/.setup"; @@ -38,7 +39,7 @@ nixosConfigurations = ( # NixOS configurations import ./hosts { # Imports ./hosts/default.nix inherit (nixpkgs) lib; - inherit inputs nixpkgs nixos-hardware home-manager nur user location hyprland; # Also inherit home-manager so it does not need to be defined here. + inherit inputs nixpkgs nixpkgs-stable nixos-hardware home-manager nur user location hyprland; # Also inherit home-manager so it does not need to be defined here. } ); };