add ghostty

This commit is contained in:
Niccolo Borgioli 2024-12-31 16:25:50 +01:00
parent 49f5c8447d
commit 5b9da5812d
4 changed files with 20 additions and 9 deletions

View File

@ -8,6 +8,7 @@
"keycastr" "keycastr"
"raycast" "raycast"
"kitty" "kitty"
"ghostty"
# Dev # Dev
"docker" "docker"

3
files/ghostty/config Normal file
View File

@ -0,0 +1,3 @@
font-family = "JetBrainsMono Nerd Font"
quit-after-last-window-closed=true
theme = "rose-pine"

18
flake.lock generated
View File

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1734344598, "lastModified": 1735381016,
"narHash": "sha256-wNX3hsScqDdqKWOO87wETUEi7a/QlPVgpC/Lh5rFOuA=", "narHash": "sha256-CyCZFhMUkuYbSD6bxB/r43EdmDE7hYeZZPTCv0GudO4=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "83ecd50915a09dca928971139d3a102377a8d242", "rev": "10e99c43cdf4a0713b4e81d90691d22c6a58bdf2",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -27,11 +27,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1733570843, "lastModified": 1735478292,
"narHash": "sha256-sQJAxY1TYWD1UyibN/FnN97paTFuwBw3Vp3DNCyKsMk=", "narHash": "sha256-Ys9pSP9ch0SthhpbjnkCSJ9ZLfaNKnt/dcy7swjmS1A=",
"owner": "LnL7", "owner": "LnL7",
"repo": "nix-darwin", "repo": "nix-darwin",
"rev": "a35b08d09efda83625bef267eb24347b446c80b8", "rev": "71a3a075e3229a7518d76636bb762aef2bcb73ac",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -42,11 +42,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1734126203, "lastModified": 1735523292,
"narHash": "sha256-0XovF7BYP50rTD2v4r55tR5MuBLet7q4xIz6Rgh3BBU=", "narHash": "sha256-opBsbR/nrGxiiF6XzlVluiHYb6yN/hEwv+lBWTy9xoM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "71a6392e367b08525ee710a93af2e80083b5b3e2", "rev": "6d97d419e5a9b36e6293887a89a078cf85f5a61b",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -47,6 +47,10 @@
# Python # Python
pkgs.uv pkgs.uv
pkgs.ruff pkgs.ruff
pkgs.tectonic
# Codding
pkgs.nixpacks
# sflx # sflx
pkgs.vault pkgs.vault
@ -56,12 +60,15 @@
pkgs.nerd-fonts.jetbrains-mono pkgs.nerd-fonts.jetbrains-mono
]; ];
fonts.fontconfig.enable = true;
home.sessionVariables = { home.sessionVariables = {
EDITOR = "nvim"; EDITOR = "nvim";
}; };
home.file = { home.file = {
".config/omp/config.yaml".source = ./files/omp/config.yaml; ".config/omp/config.yaml".source = ./files/omp/config.yaml;
".config/ghostty/corfig".source = ./files/ghostty/config;
".config/kitty".source = ./files/kitty; ".config/kitty".source = ./files/kitty;
".gitconfig".source = ./files/git/gitconfig; ".gitconfig".source = ./files/git/gitconfig;
".gitignore_global".source = ./files/git/gitignore_global; ".gitignore_global".source = ./files/git/gitignore_global;