mirror of
https://github.com/thegeneralist01/config.git
synced 2026-05-30 08:37:01 +02:00
fix isServer
This commit is contained in:
parent
81918e08ef
commit
6d5689d68a
2 changed files with 2 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ in {
|
||||||
|
|
||||||
isServer = mkOption {
|
isServer = mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
default = config.nixpkgs.hostPlatform.isAarch64;
|
default = config.nixpkgs.hostPlatform.isAarch64 && config.nixpkgs.hostPlatform.system == "aarch64-linux";
|
||||||
description = "Whether the system is a server. Determined by the processor architecture.";
|
description = "Whether the system is a server. Determined by the processor architecture.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
|
|
||||||
gtk-titlebar = false;
|
gtk-titlebar = false;
|
||||||
mouse-hide-while-typing = true;
|
mouse-hide-while-typing = true;
|
||||||
|
custom-shader = "~/.config/ghostty-shaders/shader.glsl";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}];
|
}];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue