mirror of
https://github.com/cupcakearmy/nix-macos.git
synced 2025-01-06 23:56:27 +00:00
add ghostty
This commit is contained in:
parent
49f5c8447d
commit
5b9da5812d
1
cask.nix
1
cask.nix
@ -8,6 +8,7 @@
|
|||||||
"keycastr"
|
"keycastr"
|
||||||
"raycast"
|
"raycast"
|
||||||
"kitty"
|
"kitty"
|
||||||
|
"ghostty"
|
||||||
|
|
||||||
# Dev
|
# Dev
|
||||||
"docker"
|
"docker"
|
||||||
|
3
files/ghostty/config
Normal file
3
files/ghostty/config
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
font-family = "JetBrainsMono Nerd Font"
|
||||||
|
quit-after-last-window-closed=true
|
||||||
|
theme = "rose-pine"
|
18
flake.lock
generated
18
flake.lock
generated
@ -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": {
|
||||||
|
7
home.nix
7
home.nix
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user