Compare commits

..

4 commits

Author SHA1 Message Date
b59c352f73
shell: update fish-on-tmpfs.patch
Fish switched to rust on 4.0, so this patch needed to be updated to
match that.
2025-03-07 09:53:41 +01:00
b624ea249d
hermit/programs.nix: update programs 2025-03-07 09:52:34 +01:00
841c7192ec
nix/module.nix: remove helix cache 2025-03-07 09:52:34 +01:00
e0b8e2dfff
flake: bump inputs
flake: bump inputs
2025-03-07 09:52:34 +01:00
3 changed files with 14 additions and 14 deletions

6
flake.lock generated
View file

@ -17,11 +17,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1741173522, "lastModified": 1741246872,
"narHash": "sha256-k7VSqvv0r1r53nUI/IfPHCppkUAddeXn843YlAC5DR0=", "narHash": "sha256-Q6pMP4a9ed636qilcYX8XUguvKl/0/LGXhHcRI91p0U=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "d69ab0d71b22fa1ce3dbeff666e6deb4917db049", "rev": "10069ef4cf863633f57238f179a0297de84bd8d3",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -13,12 +13,13 @@
calc calc
# calibre # calibre
cbonsai cbonsai
cinny-desktop
cmus cmus
difftastic difftastic
element element
element-desktop element-desktop
emacs30-pgtk emacs30-pgtk
# evince evince
eza eza
firefox firefox
fftw fftw
@ -68,7 +69,6 @@
ripgrep ripgrep
rmpc rmpc
signal-desktop signal-desktop
sioyek
smartmontools smartmontools
taskwarrior3 taskwarrior3
taskwarrior-tui taskwarrior-tui

View file

@ -1,10 +1,10 @@
--- a/src/path.cpp --- a/src/path.rs
+++ b/src/path.cpp +++ b/src/path.rs
@@ -384,7 +384,7 @@ static const base_directory_t &get_data_directory() { @@ -781,7 +781,7 @@ fn get_cache_directory() -> &'static BaseDirectory {
}
static const base_directory_t &get_config_directory() { fn get_config_directory() -> &'static BaseDirectory {
- static base_directory_t s_dir = make_base_directory(L"XDG_CONFIG_HOME", L"/.config/fish"); static DIR: Lazy<BaseDirectory> =
+ static base_directory_t s_dir = make_base_directory(L"XDG_RUNTIME_DIR", L"/.config/fish"); - Lazy::new(|| make_base_directory(L!("XDG_CONFIG_HOME"), L!("/.config/fish")));
return s_dir; + Lazy::new(|| make_base_directory(L!("XDG_RUNTIME_DIR"), L!("/.config/fish")));
&DIR
} }