Compare commits

...

4 commits

Author SHA1 Message Date
783a628830
feat: move linux-builder to orbstack
Some checks failed
check / check (push) Failing after 12s
2024-09-16 23:37:38 +02:00
d9f3008c50
fix: move macOS GNUPGHOME to ~ 2024-09-16 23:37:11 +02:00
5458fe353b
feat: don't animate yabai 2024-09-16 23:36:31 +02:00
77637e6562
fix: make it build on macOS 2024-09-16 23:35:05 +02:00
4 changed files with 21 additions and 5 deletions

View file

@ -15,7 +15,7 @@ in
};
programs.firefox = {
enable = true;
enable = isLinux;
profiles.default = {
search.default = "DuckDuckGo";
search.force = true;

View file

@ -57,7 +57,7 @@ in
]);
};
programs.gpg.homedir = "${configHome}/gnupg";
programs.gpg.homedir = lib.mkIf isLinux "${configHome}/gnupg";
xdg = {
enable = true;

View file

@ -24,8 +24,6 @@
# Auto upgrade nix package and the daemon service.
services.nix-daemon.enable = true;
nix.linux-builder.enable = true;
services = {
sketchybar = {
enable = true;
@ -46,7 +44,7 @@
right_padding = 5;
top_padding = 5;
bottom_padding = 5;
window_animation_duration = "0.3";
window_animation_duration = "0.0";
window_origin_display = "cursor";
window_placement = "second_child";

View file

@ -10,4 +10,22 @@
latitude = 48.210033;
longitude = 16.363449;
};
nix.buildMachines = [
{
hostName = "orb";
sshUser = "nixos";
supportedFeatures = [
"nixos-test"
"benchmark"
"big-parallel"
"kvm"
"gccarch-armv8-a"
];
systems = [
"aarch64-linux"
"x86_64-linux"
];
}
];
}