-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5d31593
commit 67df8b9
Showing
1 changed file
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,15 @@ | |
url = "github:homebrew/homebrew-cask"; | ||
flake = false; | ||
}; | ||
ghostty = { | ||
url = "git+ssh://[email protected]/ghostty-org/ghostty"; | ||
|
||
# NOTE: The below 2 lines are only required on nixos-unstable, | ||
# if you're on stable, they may break your build | ||
inputs.nixpkgs-stable.follows = "nixpkgs"; | ||
inputs.nixpkgs-unstable.follows = "nixpkgs"; | ||
}; | ||
|
||
# homebrew-sk8s = { | ||
# url = "git+file:///Users/mike.splain/developer/homebrew-pdsw-devops"; | ||
# flake = false; | ||
|
@@ -55,6 +64,7 @@ | |
home-manager, | ||
nur, | ||
pwnvim, | ||
ghostty, | ||
... | ||
}: let | ||
mkUser = username: { | ||
|
@@ -80,6 +90,7 @@ | |
environment.systemPackages = with nixpkgs; [ | ||
zoxide | ||
inputs.pwnvim.packages."${final.system}".default | ||
ghostty.packages."${final.system}".default | ||
]; | ||
|
||
system = { | ||
|
@@ -100,7 +111,7 @@ | |
useGlobalPkgs = true; | ||
useUserPackages = true; | ||
backupFileExtension = "backup"; | ||
extraSpecialArgs = {inherit inputs pwnvim; user = mkUser username;}; | ||
extraSpecialArgs = {inherit inputs pwnvim ghostty; user = mkUser username;}; | ||
users.${username} = {imports = [./home];}; | ||
}; | ||
modules = | ||
|