From 77950b7caf8c9d67ef52bb7e71c0466acdc281ab Mon Sep 17 00:00:00 2001 From: blahai Date: Tue, 5 Nov 2024 23:46:40 +0200 Subject: [PATCH] Flake: finally use the lix flake input instead --- flake.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 3d9da66..7b5c5f5 100644 --- a/flake.nix +++ b/flake.nix @@ -27,6 +27,11 @@ chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable"; nur.url = "github:nix-community/NUR"; + lix-module = { + url = "https://git.lix.systems/lix-project/nixos-module/archive/2.91.1-1.tar.gz"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + ags = { url = "github:Aylur/ags"; inputs.nixpkgs.follows = "nixpkgs"; @@ -64,7 +69,7 @@ }; - outputs = { self, nixpkgs, chaotic, nur, home-manager, disko, ... }@inputs: + outputs = { self, nixpkgs, chaotic, nur, home-manager, lix-module, disko, ... }@inputs: let system = "x86_64-linux"; in { @@ -72,6 +77,7 @@ nyx = nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs; }; modules = [ + lix-module.nixosModules.default ./hosts/nyx/configuration.nix inputs.home-manager.nixosModules.default chaotic.nixosModules.default