From f818819a6630b450e5f6b229a1b87d8ece5d51fa Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Mon, 30 Sep 2024 21:25:07 -0500 Subject: arkenfox in ff + update userchrome and ui etc --- flake.nix | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index 053354f..21e4a74 100644 --- a/flake.nix +++ b/flake.nix @@ -8,21 +8,34 @@ url = "github:nix-community/home-manager/release-24.05"; inputs.nixpkgs.follows = "nixpkgs"; }; + + arkenfox = { + url = "github:dwarfmaster/arkenfox-nixos"; + inputs.nixpkgs.follows = "nixpkgs"; + #inputs.home-manager.follows = "home-manager"; + }; }; - outputs = { nixpkgs, home-manager, ... }: + outputs = { nixpkgs, home-manager, arkenfox, ... }@inputs : # HOSTNAME NIXOS let system = "x86_64-linux"; + pkgs = nixpkgs.legacyPackages.${system}; in { - nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { + nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { inherit system; - modules = [ ./configuration.nix ]; + specialArgs = { inherit inputs; }; + modules = [ + ./configuration.nix + ]; }; homeConfigurations.timmy = home-manager.lib.homeManagerConfiguration { - pkgs = nixpkgs.legacyPackages.${system}; - modules = [ ./home.nix ]; + inherit pkgs; + modules = [ + ./home.nix + inputs.arkenfox.hmModules.arkenfox + ]; }; }; } -- cgit v1.2.3