From cdd9494c931878d5c97e6c81c5bdb0a0f81b4364 Mon Sep 17 00:00:00 2001 From: Skullheadx Date: Fri, 24 Apr 2026 21:32:57 -0400 Subject: bluetooth --- flake.nix | 75 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 39 insertions(+), 36 deletions(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index 7ee6bf4..fe79f36 100644 --- a/flake.nix +++ b/flake.nix @@ -17,45 +17,48 @@ }; }; - outputs = { - self, - nixpkgs, - home-manager, - stylix, - nur, - ... - } @ inputs: let - lib = nixpkgs.lib; - system = "x86_64-linux"; - pkgs = import nixpkgs { - inherit system; - config.allowUnfree = true; - overlays = [nur.overlay]; - }; - in { - nixosConfigurations = { - home = lib.nixosSystem { + outputs = + { + self, + nixpkgs, + home-manager, + stylix, + nur, + ... + }@inputs: + let + lib = nixpkgs.lib; + system = "x86_64-linux"; + pkgs = import nixpkgs { inherit system; - modules = [ - ./configuration.nix - ]; - specialArgs = { - inherit inputs; + config.allowUnfree = true; + overlays = [ nur.overlays.default ]; + }; + in + { + nixosConfigurations = { + home = lib.nixosSystem { + inherit system; + modules = [ + ./configuration.nix + ]; + specialArgs = { + inherit inputs; + }; }; }; - }; - homeConfigurations = { - andrew = home-manager.lib.homeManagerConfiguration { - inherit pkgs; - modules = [ - stylix.homeModules.stylix - #nur.modules.nixos.default - ./dotfiles.nix - ./home.nix - {dotfiles.mutable = true;} - ]; - extraSpecialArgs = {inherit inputs;}; + homeConfigurations = { + andrew = home-manager.lib.homeManagerConfiguration { + inherit pkgs; + modules = [ + stylix.homeModules.stylix + #nur.modules.nixos.default + ./dotfiles.nix + ./home.nix + { dotfiles.mutable = true; } + ]; + extraSpecialArgs = { inherit inputs; }; + }; }; }; - }; } -- cgit v1.3.1