mirror of
https://github.com/blahai/nyx.git
synced 2025-06-07 20:23:02 -04:00
Fix packages & add ghostty
This commit is contained in:
parent
2d9b1f5df7
commit
ab60fb9fcb
9 changed files with 185 additions and 46 deletions
|
@ -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; [
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue