this repo has no description
0
fork

Configure Feed

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

test: activate all profiles

+10 -9
+10 -9
hosts/macos-test.nix
··· 1 - { config, lib, ... }: 1 + { lib, ... }: 2 2 3 3 { 4 + imports = [ 5 + ../modules/cli 6 + ../modules/dotfiles 7 + ../modules/gui 8 + ../modules/personal 9 + ../modules/work 10 + ]; 11 + 4 12 primaryUser.username = "runner"; 5 13 6 14 networking.hostName = "macos-test"; 7 15 8 - # Linux builder is disabled in CI until bootstrap issues are fixed. 16 + # TODO Linux builder is disabled in CI until bootstrap issues are fixed. 9 17 nix.linux-builder.enable = lib.mkForce false; 10 - 11 - home-manager = { 12 - users.${config.primaryUser.username} = { 13 - home.stateVersion = "25.11"; 14 - programs.home-manager.enable = true; 15 - }; 16 - }; 17 18 }