(mirror) personal dotfiles github.com/crescentrose/dotfiles
at main 24 lines 608 B view raw
1{ 2 # only import the subset supported by macOS 3 imports = [ 4 ./base.nix 5 ./programs/git.nix 6 ./programs/ssh.nix 7 ./programs/helix.nix 8 ./shell 9 ]; 10 11 # corporate mandated 12 home.username = "ivan.ostric"; 13 home.homeDirectory = "/Users/ivan.ostric"; 14 15 # TODO: Ghostty is not packaged for macOS in Nix, so we can't use the same 16 # config. This should be fixed. 17 xdg.configFile."ghostty/config".text = '' 18 command = /usr/bin/env zsh -c nu 19 font-family = Maple Mono 20 font-size = 14 21 theme = dark:Catppuccin Macchiato,light:Catppuccin Latte 22 macos-option-as-alt = true 23 ''; 24}