Skip to content

Commit

Permalink
nixos/cross-compiling: disable by default
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagokokada committed Sep 20, 2023
1 parent 7505ce1 commit 06db31b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions hosts/miku-nixos/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ in

nixos = {
audio.lowLatency.enable = true;
cross-compiling.enable = true;
dev.enable = true;
server = {
plex.enable = true;
Expand Down
1 change: 1 addition & 0 deletions hosts/sankyuu-nixos/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ in
home-manager.users.${config.meta.username}.theme.wallpaper.path = pkgs.wallpapers.hatsune-miku_stylized-ultrawide;

nixos = {
cross-compiling.enable = true;
dev.enable = true;
desktop.tailscale.enable = true;
audio.lowLatency = {
Expand Down
2 changes: 1 addition & 1 deletion nixos/cross-compiling.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{
options.nixos.cross-compiling = {
enable = lib.mkDefaultOption "cross-compiling config for nixpkgs";
enable = lib.mkEnableOption "cross-compiling config for nixpkgs";
emulatedSystems = lib.mkOption {
description = "List of systems to emulate";
type = lib.types.listOf lib.types.str;
Expand Down

0 comments on commit 06db31b

Please sign in to comment.