Fix packages & add ghostty

This commit is contained in:
blahai 2025-01-01 15:55:38 +02:00
parent 2d9b1f5df7
commit ab60fb9fcb
No known key found for this signature in database
9 changed files with 185 additions and 46 deletions

View file

@ -184,7 +184,7 @@
substituters = [
"https://nix-community.cachix.org"
"https://nixpkgs-unfree.cachix.org"
"https://hyprland.cachix.org/"
"https://hyprland.cachix.org"
"https://anyrun.cachix.org"
"https://wezterm.cachix.org"
];
@ -211,7 +211,7 @@
nautilus
diff-so-fancy
eog
bottles
pkgs-smol.bottles
ffmpeg-full
gst_all_1.gstreamer
gst_all_1.gst-libav
@ -223,13 +223,12 @@
age
ssh-to-age
sops
cloudflared
inputs.zen-browser.packages."${pkgs.system}".specific
inputs.zen-browser.packages."${pkgs.system}".default
# cava
socat
btrfs-progs
btop-rocm
rocmPackages.rocm-smi
# pkgs-smol.btop-rocm
# pkgs-smol.rocmPackages.rocm-smi
hyprcursor
grimblast
neovim
@ -252,6 +251,7 @@
nixd
nix-output-monitor
alejandra
comma
zip
nodejs
typescript
@ -279,6 +279,7 @@
mission-center
speedcrunch
geogebra
inputs.ghostty.packages.x86_64-linux.default
];
fonts.packages = with pkgs; [

View file

@ -75,10 +75,18 @@
home.packages = with pkgs; [
obsidian
inputs.haivim.packages.${pkgs.system}.default
mold
clang
];
home.sessionVariables = {EDITOR = "nvim";};
home.file.".cargo/config.toml".text = ''
[target.x86_64-unknown-linux-gnu]
linker = "clang"
rustflags = ["-C", "link-arg=-fuse-ld=${pkgs.mold}/bin/mold"]
'';
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}