Switch boot partition (#126)

This commit is contained in:
Patrick Stevens
2025-09-06 15:21:17 +01:00
committed by GitHub
parent d56963e330
commit 2d09c607d2
6 changed files with 51 additions and 30 deletions

View File

@@ -1,6 +1,6 @@
{pkgs, ...}: {
programs.ghostty = {
enable = true;
enable = pkgs.stdenv.isLinux;
enableZshIntegration = true;
settings = {
keybind = [
@@ -9,7 +9,10 @@
};
};
home.packages = [
pkgs.ghostty
];
home.packages =
if pkgs.stdenv.isLinux
then [
pkgs.ghostty
]
else [];
}