mirror of
https://github.com/Smaug123/nix-dotfiles
synced 2025-10-22 14:48:40 +00:00
Switch boot partition (#126)
This commit is contained in:
@@ -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 [];
|
||||
}
|
||||
|
Reference in New Issue
Block a user