diff options
| author | Preston Pan <ret2pop@nullring.xyz> | 2026-03-04 23:24:02 -0800 |
|---|---|---|
| committer | Preston Pan <ret2pop@nullring.xyz> | 2026-03-04 23:24:02 -0800 |
| commit | f4c55e23fc7ca17f10bfcbd885ffedc8c6799bf9 (patch) | |
| tree | e2d7d537eb92072c920722ea5308007c65e271c0 | |
| parent | cba956171b297dc600eb110d2a9f85456b2be394 (diff) | |
spontaneity build maybe?
| -rw-r--r-- | flake.nix | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -173,8 +173,13 @@ cp -r $HOME/website_html/. $out/ }; in { - nixosConfigurations.installer = hyprnixmacs.nixosConfigurations.installer.extendModules { - specialArgs = { monorepoSelf = self; }; + nixosConfigurations = { + installer = hyprnixmacs.nixosConfigurations.installer.extendModules { + specialArgs = { monorepoSelf = self; }; + }; + spontaneity = hyprnixmacs.nixosConfigurations.spontaneity.extendModules { + specialArgs = { monorepoSelf = self; }; + }; }; checks."${system}" = { @@ -184,7 +189,9 @@ cp -r $HOME/website_html/. $out/ packages."${system}" = { website = website; installer = self.nixosConfigurations.installer.config.system.build.isoImage; + spontaneity = self.nixosConfigurations.spontaneity.config.system.build.toplevel; }; + devShells."${system}".default = with pkgs; mkShell { inherit (pre-commit-check) shellHook; buildInputs = [ |
