diff options
-rw-r--r-- | accounts/gkleen@sif/default.nix | 2 | ||||
-rw-r--r-- | flake.nix | 8 |
2 files changed, 3 insertions, 7 deletions
diff --git a/accounts/gkleen@sif/default.nix b/accounts/gkleen@sif/default.nix index e1b0fe14..d4d81849 100644 --- a/accounts/gkleen@sif/default.nix +++ b/accounts/gkleen@sif/default.nix | |||
@@ -116,7 +116,7 @@ in { | |||
116 | mpv.config = { | 116 | mpv.config = { |
117 | demuxer-max-bytes = 1073741824; | 117 | demuxer-max-bytes = 1073741824; |
118 | demuxer-max-back-bytes = 268435456; | 118 | demuxer-max-back-bytes = 268435456; |
119 | gpu-api = "vulkan"; | 119 | # gpu-api = "vulkan"; |
120 | }; | 120 | }; |
121 | 121 | ||
122 | autorandr = { | 122 | autorandr = { |
@@ -146,9 +146,7 @@ | |||
146 | in forAllSystems (system: _systemPkgs: optionalAttrs (!(isNull installerConfig)) (mkInstallers system)); | 146 | in forAllSystems (system: _systemPkgs: optionalAttrs (!(isNull installerConfig)) (mkInstallers system)); |
147 | installerNixosConfigurations = listToAttrs (concatLists (mapAttrsToList (system: mapAttrsToList (profile: { config, ... }: nameValuePair ("installer-${system}-${profile}") config)) installers)); | 147 | installerNixosConfigurations = listToAttrs (concatLists (mapAttrsToList (system: mapAttrsToList (profile: { config, ... }: nameValuePair ("installer-${system}-${profile}") config)) installers)); |
148 | 148 | ||
149 | packages = | 149 | packages = forAllSystems (system: systemPkgs: composeManyExtensions (attrValues self.overlays) self.legacyPackages.${system} systemPkgs); |
150 | let installerPackages = system: optionalAttrs (!(isNull installerConfig)) (mapAttrs' (profile: value: nameValuePair "installer-${profile}" value.output) installers.${system}); | ||
151 | in forAllSystems (system: systemPkgs: self.overlays.default (self.legacyPackages.${system}) systemPkgs // installerPackages system); | ||
152 | 150 | ||
153 | activateHomeManager = system: base: (deploy-rs.lib.${system}.activate.custom // { dryActivate = "DRY_RUN=1 $PROFILE/activate"; }) base.activationPackage "$PROFILE/activate"; | 151 | activateHomeManager = system: base: (deploy-rs.lib.${system}.activate.custom // { dryActivate = "DRY_RUN=1 $PROFILE/activate"; }) base.activationPackage "$PROFILE/activate"; |
154 | in | 152 | in |
@@ -166,9 +164,7 @@ | |||
166 | homeModules = nixImport rec { dir = ./home-modules; }; | 164 | homeModules = nixImport rec { dir = ./home-modules; }; |
167 | homeConfigurations = listToAttrs (concatLists (mapAttrsToList (hostname: nixosConfig: mapAttrsToList (username: configuration: nameValuePair "${username}@${hostname}" { inherit (configuration.home) activationPackage; }) nixosConfig.config.home-manager.users) self.nixosConfigurations)); | 165 | homeConfigurations = listToAttrs (concatLists (mapAttrsToList (hostname: nixosConfig: mapAttrsToList (username: configuration: nameValuePair "${username}@${hostname}" { inherit (configuration.home) activationPackage; }) nixosConfig.config.home-manager.users) self.nixosConfigurations)); |
168 | 166 | ||
169 | overlays = let | 167 | overlays = mapAttrs (_name: path: mkOverlay path) overlayPaths; |
170 | overlays = mapAttrs (_name: path: mkOverlay path) overlayPaths; | ||
171 | in overlays // { default = final: prev: composeManyExtensions (attrValues overlays) final prev; }; | ||
172 | overlays-path = forAllSystems (system: _: self.legacyPackages.${system}.writeText "overlays.nix" '' | 168 | overlays-path = forAllSystems (system: _: self.legacyPackages.${system}.writeText "overlays.nix" '' |
173 | map import (builtins.attrValues (builtins.fromJSON ${self.legacyPackages.${system}.lib.strings.escapeNixString (toJSON overlayPaths)})) | 169 | map import (builtins.attrValues (builtins.fromJSON ${self.legacyPackages.${system}.lib.strings.escapeNixString (toJSON overlayPaths)})) |
174 | ''); | 170 | ''); |