feat(ghostty): update device check and font configuration
Some checks failed
Flake checker / Build Nix targets (push) Failing after 16s
Some checks failed
Flake checker / Build Nix targets (push) Failing after 16s
feat(programs): add rustup configuration
This commit is contained in:
@@ -36,6 +36,7 @@
|
||||
./zoxide.nix
|
||||
./television.nix
|
||||
./himalaya.nix
|
||||
./rustup.nix
|
||||
|
||||
# ./goread.nix
|
||||
# ./helix.nix
|
||||
|
||||
11
home/programs/rustup.nix
Normal file
11
home/programs/rustup.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
pkgs,
|
||||
device,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs;
|
||||
[]
|
||||
++ lib.optionals (!device.isServer) [rustup]
|
||||
++ lib.optionals device.isLinux []
|
||||
++ lib.optionals device.isDarwin [];
|
||||
}
|
||||
Reference in New Issue
Block a user