Switch to stable

This commit is contained in:
Pedro Rey Anca 2024-08-01 01:21:23 +02:00
parent c9c6091c9e
commit 1a80986ebd
8 changed files with 176 additions and 224 deletions

View file

@ -2,13 +2,11 @@
description = "peprolinbot's nixos configuration";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
nur.url = "github:nix-community/NUR";
hypr-contrib.url = "github:hyprwm/contrib";
hyprpicker.url = "github:hyprwm/hyprpicker";
nix-gaming.url = "github:fufexan/nix-gaming";
fjordlauncher.url = "github:unmojang/FjordLauncher";
@ -19,7 +17,7 @@
};
home-manager = {
url = "github:nix-community/home-manager";
url = "github:nix-community/home-manager/release-24.05";
inputs.nixpkgs.follows = "nixpkgs";
};
@ -39,6 +37,7 @@
outputs = {
nixpkgs,
nixpkgs-unstable,
self,
...
} @ inputs: let
@ -48,6 +47,10 @@
inherit system;
config.allowUnfree = true;
};
pkgs-unstable = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
};
lib = nixpkgs.lib;
in {
nixosConfigurations = {
@ -56,7 +59,7 @@
modules = [(import ./hosts/frues-pc)];
specialArgs = {
host = "frues-pc";
inherit self inputs username;
inherit self inputs username pkgs-unstable;
};
};
frues-port = nixpkgs.lib.nixosSystem {