Forgot to re-add chaotic to flake

This commit is contained in:
Emmet
2024-12-07 13:04:56 -06:00
parent e24e76cd3f
commit acd020feb8

View File

@ -127,6 +127,7 @@
inherit pkgs; inherit pkgs;
modules = [ modules = [
(./. + "/profiles" + ("/" + systemSettings.profile) + "/home.nix") # load home.nix from selected PROFILE (./. + "/profiles" + ("/" + systemSettings.profile) + "/home.nix") # load home.nix from selected PROFILE
inputs.chaotic.homeManagerModules.default
]; ];
extraSpecialArgs = { extraSpecialArgs = {
# pass config variables from above # pass config variables from above
@ -143,6 +144,7 @@
modules = [ modules = [
(./. + "/profiles" + ("/" + systemSettings.profile) + "/configuration.nix") (./. + "/profiles" + ("/" + systemSettings.profile) + "/configuration.nix")
./system/bin/phoenix.nix ./system/bin/phoenix.nix
inputs.chaotic.nixosModules.default
]; # load configuration.nix from selected PROFILE ]; # load configuration.nix from selected PROFILE
specialArgs = { specialArgs = {
# pass config variables from above # pass config variables from above
@ -192,6 +194,7 @@
inputs = { inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable"; nixpkgs.url = "nixpkgs/nixos-unstable";
nixpkgs-stable.url = "nixpkgs/nixos-24.11"; nixpkgs-stable.url = "nixpkgs/nixos-24.11";
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
home-manager-unstable.url = "github:nix-community/home-manager/master"; home-manager-unstable.url = "github:nix-community/home-manager/master";
home-manager-unstable.inputs.nixpkgs.follows = "nixpkgs"; home-manager-unstable.inputs.nixpkgs.follows = "nixpkgs";