My NixOS and Home Manager configurations
10
fork

Configure Feed

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

switch to lix

quasigod 44d2efe2 88fb6316

+18 -15
+18 -15
modules/nix.nix
··· 1 1 { inputs, ... }: 2 2 { 3 3 den.default = { 4 - nixos = { 5 - imports = [ inputs.nix-index-database.nixosModules.nix-index ]; 6 - nixpkgs.config.allowUnfree = true; 7 - programs.nix-index-database.comma.enable = true; 8 - programs.nix-ld.enable = true; 9 - nix = { 10 - optimise.automatic = false; 11 - registry.nixpkgs.flake = inputs.nixpkgs; 12 - gc.automatic = true; 13 - settings = { 14 - keep-outputs = true; 15 - keep-derivations = true; 16 - use-xdg-base-directories = true; 17 - auto-optimise-store = true; 4 + nixos = 5 + { pkgs, ... }: 6 + { 7 + imports = [ inputs.nix-index-database.nixosModules.nix-index ]; 8 + nixpkgs.config.allowUnfree = true; 9 + programs.nix-index-database.comma.enable = true; 10 + programs.nix-ld.enable = true; 11 + nix = { 12 + package = pkgs.lixPackageSets.latest.lix; 13 + optimise.automatic = false; 14 + registry.nixpkgs.flake = inputs.nixpkgs; 15 + gc.automatic = true; 16 + settings = { 17 + keep-outputs = true; 18 + keep-derivations = true; 19 + use-xdg-base-directories = true; 20 + auto-optimise-store = true; 21 + }; 18 22 }; 19 23 }; 20 - }; 21 24 homeManager.nix.registry = { 22 25 quix = { 23 26 exact = true;