mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
36 lines
666 B
Nix
36 lines
666 B
Nix
{pkgs, ...}: {
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
documentation.nixos.enable = false;
|
|
|
|
networking.hostName = "ghostty";
|
|
networking.domain = "mitchellh.com";
|
|
|
|
virtualisation.vmVariant = {
|
|
virtualisation.memorySize = 2048;
|
|
};
|
|
|
|
users.mutableUsers = true;
|
|
|
|
users.groups.ghostty = {
|
|
gid = 1000;
|
|
};
|
|
|
|
users.users.ghostty = {
|
|
description = "Ghostty";
|
|
uid = 1000;
|
|
group = "ghostty";
|
|
extraGroups = ["wheel"];
|
|
isNormalUser = true;
|
|
initialPassword = "ghostty";
|
|
};
|
|
|
|
environment.systemPackages = [
|
|
pkgs.kitty
|
|
pkgs.ghostty
|
|
];
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|