this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

helix runs lite config, out of space

+2 -7
+2 -7
flake.nix
··· 167 167 helix = nixpkgs.lib.nixosSystem rec { 168 168 specialArgs = { inherit inputs self; }; 169 169 system = "x86_64-linux"; 170 - pkgs = nixpkgsFor.${system}; 170 + pkgs = litePkgsFor.${system}; 171 171 modules = [ 172 172 ./hosts/helix 173 173 agenix.nixosModules.age 174 174 self.nixosModules.backup 175 175 self.nixosModules.wireguard 176 - home-manager.nixosModules.home-manager 177 - { 178 - home-manager.useGlobalPkgs = true; 179 - home-manager.useUserPackages = true; 180 - home-manager.users.anish = import ./home/core; 181 - } 176 + self.nixosModules.microbin 182 177 ]; 183 178 }; 184 179