Compare commits

..
5 Commits
Author SHA1 Message Date
doloro 2782572111 mreow 2026-08-10 19:21:14 +01:00
doloro b77bcf67d0 refactor(fish): drop classic direnv, keep direnv-instant only 2026-08-09 00:40:41 +01:00
doloro 4a4e518e05 refactor(nixvim): drop redundant plugins, keep snacks
- drop lsp-format (conform lsp_format=fallback already formats via LSP)
- drop notify (snacks.notifier is the toast system)
- drop mini-cursorword (snacks.words covers word highlighting)
- drop telescope+file-browser (snacks.picker replaces it; keymaps swapped)
- drop vim-dadbod-completion (no vim-dadbod installed, source never fires)
- drop auto-session dead block (disabled with settings)
- drop <leader>fs persisted keymap (extension disabled, errored on press)
- rustaceanvim: drop files.watcher=server (RA notify 'No path was found' errors)
- nixd: drop options exprs (flake configs stack-overflow on eval, broken)
2026-08-09 00:34:44 +01:00
doloro 9a77bf305e fix(nixvim): eliminate per-keystroke LSP completion latency
- drop lsp-lines (redundant with tiny-inline-diagnostic; double diagnostic virtual-text redraw per keystroke)
- drop nvim_lsp_signature_help cmp source (extra server request per keystroke; <C-k> keymap covers it)
- remove cmp-nvim-lsp-signature-help plugin (now unused)
- disable LSP client file logging (nixd/svelte stderr spam was writing 5MB+ logs on the main loop)
- disable rust-analyzer semantic tokens (ContentModified retry loop while typing)
2026-08-09 00:23:11 +01:00
doloro d6ae3a5d1b checkpoint: pre completion-latency fixes 2026-08-09 00:21:31 +01:00
9 changed files with 360 additions and 246 deletions
+18 -17
View File
@@ -20,6 +20,7 @@
modules.nikpkgs modules.nikpkgs
modules.fonts modules.fonts
modules.unity modules.unity
modules.printing
<modules/hyprland/doloro-settings> <modules/hyprland/doloro-settings>
(modules.obs { (modules.obs {
audio = true; audio = true;
@@ -78,23 +79,23 @@
... ...
}: }:
{ {
xdg.configFile."hypr/hyprland-local.lua" = { xdg.configFile."hypr/hyprland-local.lua" = {
text = '' text = ''
-- Host overrides (desktop): pin workspaces to monitors. -- Host overrides (desktop): pin workspaces to monitors.
-- HDMI-A-1 (left) shows workspace 1, DP-2 (right) shows workspace 2. -- HDMI-A-1 (left) shows workspace 1, DP-2 (right) shows workspace 2.
hl.workspace_rule({ workspace = "name:1", monitor = "HDMI-A-1" }) hl.workspace_rule({ workspace = "name:1", monitor = "HDMI-A-1" })
hl.workspace_rule({ workspace = "name:2", monitor = "DP-2" }) hl.workspace_rule({ workspace = "name:2", monitor = "DP-2" })
-- Autostart (workspace placement applies only to these spawned windows) -- Autostart (workspace placement applies only to these spawned windows)
hl.on("hyprland.start", function() hl.on("hyprland.start", function()
hl.exec_cmd("steam", { workspace = "6 silent" }) hl.exec_cmd("steam", { workspace = "6 silent" })
hl.exec_cmd("telegram-desktop", { workspace = "8 silent" }) hl.exec_cmd("telegram-desktop", { workspace = "8 silent" })
hl.exec_cmd("equibop", { workspace = "8 silent" }) hl.exec_cmd("equibop", { workspace = "8 silent" })
hl.exec_cmd("spotify", { workspace = "9 silent" }) hl.exec_cmd("spotify", { workspace = "9 silent" })
hl.exec_cmd("obs", { workspace = "10 silent" }) hl.exec_cmd("obs", { workspace = "10 silent" })
end) end)
''; '';
}; };
home.packages = with pkgs; [ home.packages = with pkgs; [
equibop equibop
telegram-desktop telegram-desktop
@@ -102,7 +103,7 @@
# pear-desktop # pear-desktop
prismlauncher prismlauncher
# deadlock-mod-manager # deadlock-mod-manager
inputs.nik-pkgs.packages.x86_64-linux.grimoire inputs.grimoire.packages.x86_64-linux.grimoire
# gamescope # gamescope
android-studio android-studio
blender blender
+2
View File
@@ -7,5 +7,7 @@
}; };
den.url = "github:vic/den?ref=8101ec865c0bf4027d40b9fd8951e3e435a86d64"; den.url = "github:vic/den?ref=8101ec865c0bf4027d40b9fd8951e3e435a86d64";
nixpkgs-master.url = "github:NixOS/nixpkgs/master"; nixpkgs-master.url = "github:NixOS/nixpkgs/master";
# Builds from its own locked nixpkgs (electron lib paths pinned to that rev).
grimoire.url = "github:Slush97/grimoire";
}; };
} }
+4 -4
View File
@@ -10,6 +10,8 @@
modules.fish = { modules.fish = {
nixos = { nixos = {
programs.fish.enable = true; programs.fish.enable = true;
# imports = [ inputs.direnv-instant.nixosModules.direnv-instant ];
# programs.direnv-instant.enable = true;
}; };
homeManager = homeManager =
{ pkgs, ... }: { pkgs, ... }:
@@ -19,6 +21,8 @@
pkgs.nix-output-monitor pkgs.nix-output-monitor
# pkgs.devenv # pkgs.devenv
]; ];
imports = [ inputs.direnv-instant.homeModules.direnv-instant ];
programs.direnv-instant.enable = true;
programs = { programs = {
fish = { fish = {
enable = true; enable = true;
@@ -52,10 +56,6 @@
git = true; git = true;
extraOptions = [ ]; extraOptions = [ ];
}; };
direnv = {
enable = true;
enableFishIntegration = true;
};
}; };
}; };
}; };
+62 -65
View File
@@ -29,9 +29,20 @@
rev = "0d040ed81f7953118b81cd12681fcdfcac069803"; rev = "0d040ed81f7953118b81cd12681fcdfcac069803";
hash = "sha256-UF9zeO5Uujdt2MEwy2d2Lhk6JRnEN4vrEvYslv0/zaA"; hash = "sha256-UF9zeO5Uujdt2MEwy2d2Lhk6JRnEN4vrEvYslv0/zaA";
}; };
nvimSkipModules = [ "tiny-code-action.previewers.snacks" ]; nvimSkipModules = [ "tiny-code-action.previewers.snacks" ];
}; };
in cmp-lsp-rs = pkgs.vimUtils.buildVimPlugin {
name = "nvim-cmp-lsp-rs";
src = pkgs.fetchFromGitHub {
owner = "zjp-CN";
repo = "nvim-cmp-lsp-rs";
rev = "329075b806deb719d3ce4f55a7e443541ce5289d";
hash = "sha256-rBABhsShCrx7Gofm1mC6DQAL0KeNtQidW9eMr9kfwGI=";
};
# nvim-cmp on rtp during the require check (cmp_lsp_rs requires cmp.types.lsp at load time)
dependencies = [ pkgs.vimPlugins.nvim-cmp ];
};
in
{ {
imports = [ imports = [
inputs.nixvim.homeModules.nixvim inputs.nixvim.homeModules.nixvim
@@ -50,6 +61,7 @@
# enable = true; # enable = true;
# autoLoad = false; # autoLoad = false;
# }; # };
dependencies.rust-analyzer.enable = false;
extraPackages = with pkgs; [ extraPackages = with pkgs; [
# formatters # formatters
nixfmt-rs nixfmt-rs
@@ -58,9 +70,9 @@
ripgrep ripgrep
nixd nixd
tree-sitter tree-sitter
rust-analyzer # rust-analyzer
rustc # rustc
cargo # cargo
]; ];
performance.byteCompileLua = { performance.byteCompileLua = {
enable = true; enable = true;
@@ -106,29 +118,43 @@
# }; # };
# }; # };
# }; # };
lsp = { rustaceanvim = {
enable = true; enable = true;
servers = { settings = {
server = {
default_settings = {
rust-analyzer = {
cargo.targetDir = true;
diagnostics.refresh_update = true;
};
};
};
};
};
lsp = {
enable = true;
onAttach = ''
if client.name == "rust-analyzer" then
client.server_capabilities.semanticTokensProvider = nil
end
'';
servers = {
# qmlls = { # qmlls = {
# enable = true; # enable = true;
# config = { # config = {
# cmd = "-E"; # cmd = "-E";
# }; # };
# }; # };
rust_analyzer = { # rust_analyzer = {
enable = true; # enable = true;
installCargo = false; # installCargo = false;
installRustc = false; # installRustc = false;
}; # };
nixd = { nixd = {
enable = true; enable = true;
settings = { settings = {
nixd = { nixd = {
nixpkgs.expr = "import (builtins.getFlake \"${toString /home/doloro/dotfiles}\").inputs.nixpkgs { }"; nixpkgs.expr = "import (builtins.getFlake \"${toString /home/doloro/dotfiles}\").inputs.nixpkgs { }";
options = {
nixos.expr = "(builtins.getFlake \"${toString /home/doloro/dotfiles}\").nixosConfigurations.desktop.options";
home_manager.expr = "(builtins.getFlake \"${toString /home/doloro/dotfiles}\").homeConfigurations.doloro-desktop.options";
};
}; };
}; };
}; };
@@ -145,17 +171,6 @@
svelte.enable = true; svelte.enable = true;
}; };
}; };
lsp-format = {
enable = true;
# lspServersToEnable = [ "qmlls" ];
};
notify = {
enable = true;
settings = {
background_color = "#00000000";
};
};
mini-cursorword.enable = true;
# mini-statusline.enable = true; # mini-statusline.enable = true;
lualine = { lualine = {
enable = true; enable = true;
@@ -187,11 +202,6 @@
}; };
}; };
web-devicons.enable = true; web-devicons.enable = true;
vim-dadbod-completion.enable = true;
telescope = {
enable = true;
extensions.file-browser.enable = true;
};
lazygit.enable = true; lazygit.enable = true;
mini-indentscope = { mini-indentscope = {
enable = true; enable = true;
@@ -209,7 +219,6 @@
}; };
}; };
}; };
lsp-lines.enable = true;
trouble = { trouble = {
enable = true; enable = true;
settings = { settings = {
@@ -224,7 +233,6 @@
":" = { ":" = {
mapping.__raw = "cmp.mapping.preset.cmdline()"; mapping.__raw = "cmp.mapping.preset.cmdline()";
sources = [ sources = [
{ name = "path"; }
{ name = "cmdline"; } { name = "cmdline"; }
]; ];
}; };
@@ -241,10 +249,7 @@
{ {
name = "nvim_lsp"; name = "nvim_lsp";
priority = 100; priority = 100;
} entry_filter = "require('cmp_lsp_rs').filter_out.rust_entry_filter";
{
name = "nvim_lsp_signature_help";
priority = 90;
} }
{ {
name = "luasnip"; name = "luasnip";
@@ -254,10 +259,6 @@
name = "buffer"; name = "buffer";
priority = 50; priority = 50;
} }
{
name = "path";
priority = 40;
}
]; ];
mapping = { mapping = {
"<C-Space>" = "cmp.mapping.complete()"; "<C-Space>" = "cmp.mapping.complete()";
@@ -270,8 +271,16 @@
"<Tab>" = "<Tab>" =
"cmp.mapping(function(fallback) if cmp.visible() then cmp.select_next_item() elseif require('luasnip').expand_or_jumpable() then require('luasnip').expand_or_jump() else fallback() end end, {'i', 's'})"; "cmp.mapping(function(fallback) if cmp.visible() then cmp.select_next_item() elseif require('luasnip').expand_or_jumpable() then require('luasnip').expand_or_jump() else fallback() end end, {'i', 's'})";
}; };
window = { sorting = {
completion = { comparators = [
"require('cmp.config.compare').exact"
"require('cmp.config.compare').score"
"require('cmp_lsp_rs').comparators.inscope_inherent_import"
"require('cmp_lsp_rs').comparators.sort_by_label_but_underscore_last"
];
};
window = {
completion = {
border = "rounded"; border = "rounded";
winhighlight = "Normal:Pmenu,FloatBorder:Pmenu,CursorLine:PmenuSel,Search:None"; winhighlight = "Normal:Pmenu,FloatBorder:Pmenu,CursorLine:PmenuSel,Search:None";
}; };
@@ -286,14 +295,6 @@
tiny-inline-diagnostic.enable = true; tiny-inline-diagnostic.enable = true;
# tiny-code-action.enable = true; # tiny-code-action.enable = true;
# persisted.enable = true; # persisted.enable = true;
auto-session = {
enable = false;
settings = {
enabled = true;
auto_save = true;
auto_restore = true;
};
};
wakatime.enable = true; wakatime.enable = true;
treesitter = { treesitter = {
enable = true; enable = true;
@@ -325,8 +326,8 @@
}; };
}; };
extraPlugins = with pkgs; [ extraPlugins = with pkgs; [
vimPlugins.cmp-nvim-lsp-signature-help
tiny-code-action tiny-code-action
cmp-lsp-rs
]; ];
opts = { opts = {
number = true; number = true;
@@ -340,6 +341,9 @@
mapleader = " "; mapleader = " ";
}; };
extraConfigLua = '' extraConfigLua = ''
-- LSP client writes server stderr + errors to disk on the main loop; nixd spams info logs -> 5MB+ logs.
-- warn level: captures server stderr (incl. rust-analyzer slow-request timing) without nixd's info spam.
vim.lsp.set_log_level("warn")
-- tree-sitter-nix uses (#is-not? local) which the new nvim-treesitter main branch no longer registers -- tree-sitter-nix uses (#is-not? local) which the new nvim-treesitter main branch no longer registers
vim.treesitter.query.add_predicate("is-not?", function() return true end, { force = true }) vim.treesitter.query.add_predicate("is-not?", function() return true end, { force = true })
@@ -355,14 +359,7 @@
''; '';
keymaps = [ keymaps = [
{ {
action = "<cmd>Telescope persisted<cr>"; action = "<cmd>lua require('snacks.picker').files()<cr>";
key = "<leader>fs";
options = {
silent = true;
};
}
{
action = "<cmd>Telescope find_files<cr>";
key = "<leader>ff"; key = "<leader>ff";
options = { options = {
silent = true; silent = true;
@@ -383,14 +380,14 @@
}; };
} }
{ {
action = "<cmd>Telescope buffers<cr>"; action = "<cmd>lua require('snacks.picker').buffers()<cr>";
key = "<leader>fb"; key = "<leader>fb";
options = { options = {
silent = true; silent = true;
}; };
} }
{ {
action = "<cmd>Telescope live_grep<cr>"; action = "<cmd>lua require('snacks.picker').grep()<cr>";
key = "<leader>fg"; key = "<leader>fg";
options = { options = {
silent = true; silent = true;
@@ -449,7 +446,7 @@
}; };
} }
{ {
action = "<cmd>Telescope lsp_references<cr>"; action = "<cmd>lua require('snacks.picker').lsp_references()<cr>";
key = "gr"; key = "gr";
options = { options = {
silent = true; silent = true;
+27
View File
@@ -0,0 +1,27 @@
{ modules, ... }:
{
modules.printing = {
nixos =
{ pkgs, ... }:
{
services.avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
services.printing = {
enable = true;
drivers = with pkgs; [
cups-filters
cups-browsed
];
};
};
homeManager =
{ ... }:
{
};
};
}
+1 -1
View File
@@ -50,7 +50,7 @@
PUBLIC_DOMAIN = "stream.h.doloro.co.uk"; PUBLIC_DOMAIN = "stream.h.doloro.co.uk";
RTC_PORT = "6969"; RTC_PORT = "6969";
SIGNUP_CODE = "mreowmreow-pawsatyou"; SIGNUP_CODE = "mreowmreow-pawsatyou";
RUST_LOG = "info,warn"; RUST_LOG = "info";
}; };
volumes = [ volumes = [
"/data/rtmp-to-whip/db:/db" "/data/rtmp-to-whip/db:/db"
+23 -8
View File
@@ -1,18 +1,33 @@
{ den, modules, ... }: { den, modules, ... }:
{ {
modules.wivrn = { modules.wivrn = {
homeManager = homeManager =
{ pkgs, ... }: { pkgs, ... }:
{ {
home.packages = with pkgs; [ # nixpkgs builds wivrn with NVENC off (WIVRN_USE_NVENC follows cudaSupport);
wivrn # without it "nvenc" in config.json fails with "Failed to find a suitable video encoder"
wayvr nixpkgs.overlays = [
]; (final: prev: {
}; wivrn = prev.wivrn.override { cudaSupport = true; };
})
];
home.packages = with pkgs; [
wivrn
wayvr
];
};
nixos = nixos =
{ pkgs, lib, ... }: { pkgs, lib, ... }:
{ {
# nixpkgs only enables the NVENC encoder (WIVRN_USE_NVENC) when cudaSupport is set;
# without it "nvenc" in config.json fails with "Failed to find a suitable video encoder"
nixpkgs.overlays = [
(final: prev: {
wivrn = prev.wivrn.override { cudaSupport = true; };
})
];
services.wivrn = { services.wivrn = {
enable = true; enable = true;
openFirewall = true; openFirewall = true;
Generated
+222 -151
View File
@@ -20,11 +20,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1784368054, "lastModified": 1785877886,
"narHash": "sha256-zF1iJkBQSDWmRO4/LEeHR1SpKY0lqZaxkoQJpPS9K9U=", "narHash": "sha256-H2CrAlJD9FsUbSEIhPVK3IyVjnK0vSxPruBef17GcBs=",
"owner": "hyprwm", "owner": "hyprwm",
"repo": "aquamarine", "repo": "aquamarine",
"rev": "9b5f14d9483445e766294eb8fbe0b8f370269ed0", "rev": "1a10fe26a9f7d989c359e6a9ea61aa2e44d06c36",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -140,11 +140,11 @@
"treefmt-nix": "treefmt-nix" "treefmt-nix": "treefmt-nix"
}, },
"locked": { "locked": {
"lastModified": 1785395241, "lastModified": 1786000099,
"narHash": "sha256-33LyV3D5zCpFXeh6L7QBe+Syb2zWPfeEFgaJb9E8ucU=", "narHash": "sha256-T3tirJdmYgW5MKwbqfO7qlDInSq4Ilrjw/DwJemFIME=",
"owner": "Mic92", "owner": "Mic92",
"repo": "direnv-instant", "repo": "direnv-instant",
"rev": "c4231a4244dde9b85fa6ee39535f28f525596cd3", "rev": "5656a76b19fef6d1cd14b392ff508f15fa7fb086",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -174,11 +174,11 @@
"firefox-gnome-theme": { "firefox-gnome-theme": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1782007937, "lastModified": 1783570805,
"narHash": "sha256-PbnJr+eB+9Czol3ReI83dUgEhcn0sDK6TSy6ODTQm88=", "narHash": "sha256-ptl5aRlCv9/uRSv2u8Hq8UFVFeZ6Q/bT049bpqNgc3w=",
"owner": "rafaelmardojai", "owner": "rafaelmardojai",
"repo": "firefox-gnome-theme", "repo": "firefox-gnome-theme",
"rev": "981bd332015397fb1ca033fa982bd61635160c78", "rev": "5602ed62d638142c1ab31dccd01dfbfb28841225",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -273,11 +273,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1782949081, "lastModified": 1785627969,
"narHash": "sha256-vp6Y/Grm98ESt6ceOkWiHWyZRDV3J1RID4w+6NWK9yA=", "narHash": "sha256-4dtXQk/NMePegK/nWp5NSeuZKLATItOq61lpEvmXqGw=",
"owner": "hercules-ci", "owner": "hercules-ci",
"repo": "flake-parts", "repo": "flake-parts",
"rev": "17c9d6cdfc60c64f4ee8d306f9bc0b4ccb51481e", "rev": "427bf4bd9435fdf21321c8cc628c24efc14c0f7a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -293,11 +293,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1782949081, "lastModified": 1785627969,
"narHash": "sha256-vp6Y/Grm98ESt6ceOkWiHWyZRDV3J1RID4w+6NWK9yA=", "narHash": "sha256-4dtXQk/NMePegK/nWp5NSeuZKLATItOq61lpEvmXqGw=",
"owner": "hercules-ci", "owner": "hercules-ci",
"repo": "flake-parts", "repo": "flake-parts",
"rev": "17c9d6cdfc60c64f4ee8d306f9bc0b4ccb51481e", "rev": "427bf4bd9435fdf21321c8cc628c24efc14c0f7a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -311,11 +311,11 @@
"nixpkgs-lib": "nixpkgs-lib" "nixpkgs-lib": "nixpkgs-lib"
}, },
"locked": { "locked": {
"lastModified": 1782949081, "lastModified": 1785627969,
"narHash": "sha256-vp6Y/Grm98ESt6ceOkWiHWyZRDV3J1RID4w+6NWK9yA=", "narHash": "sha256-4dtXQk/NMePegK/nWp5NSeuZKLATItOq61lpEvmXqGw=",
"owner": "hercules-ci", "owner": "hercules-ci",
"repo": "flake-parts", "repo": "flake-parts",
"rev": "17c9d6cdfc60c64f4ee8d306f9bc0b4ccb51481e", "rev": "427bf4bd9435fdf21321c8cc628c24efc14c0f7a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -437,6 +437,42 @@
"type": "gitlab" "type": "gitlab"
} }
}, },
"grimoire": {
"inputs": {
"grimoire-social": "grimoire-social",
"nixpkgs": "nixpkgs_4",
"vpkmerge": "vpkmerge"
},
"locked": {
"lastModified": 1786154070,
"narHash": "sha256-RAqllsG9P6auQzXsdokVMTWeIDDcoP2XCPlmCfmPhZQ=",
"owner": "Slush97",
"repo": "grimoire",
"rev": "0ceab21c1925d9ce16cce79380dee67077348c8d",
"type": "github"
},
"original": {
"owner": "Slush97",
"repo": "grimoire",
"type": "github"
}
},
"grimoire-social": {
"flake": false,
"locked": {
"lastModified": 1779261108,
"narHash": "sha256-f+wUZOR7dqigxd/IZtay1BrLS5rcSnaDage3NXxqsPE=",
"owner": "Slush97",
"repo": "grimoire-social",
"rev": "efffe0b92a49d6cc8d82406d6fc163c2fd3662a5",
"type": "github"
},
"original": {
"owner": "Slush97",
"repo": "grimoire-social",
"type": "github"
}
},
"heliumFlake": { "heliumFlake": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@@ -446,11 +482,11 @@
"utils": "utils" "utils": "utils"
}, },
"locked": { "locked": {
"lastModified": 1785004096, "lastModified": 1786241105,
"narHash": "sha256-8stbyRwnEwPMmni/U6iHGGBbi3uebfq60qlKXPgYwWI=", "narHash": "sha256-q/iBiqM4g029hhjsQcNyObWBsPrwAxtQo21bkXjeu0E=",
"owner": "vikingnope", "owner": "vikingnope",
"repo": "helium-browser-nix-flake", "repo": "helium-browser-nix-flake",
"rev": "b356d11eff33ec730a51f9c88d258fdd72efe587", "rev": "88eb5c7ee75ef26ebaec8987274102063f34745b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -466,11 +502,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1785496534, "lastModified": 1786356609,
"narHash": "sha256-EASdusMYLuPhOCrE3LmsAGOvGhX3vnKBLxFvj9lI8tU=", "narHash": "sha256-ou8fYz5w9yhXC8YbvvExybFIa19MyW5G/8dEPqa90hM=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "e8827fbbb12015a8dd9f66285aec79d655bcb9f6", "rev": "c30c7955cec30d664a9baced6bc0112e263d4647",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -524,11 +560,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1782566056, "lastModified": 1785855875,
"narHash": "sha256-haEZcHzYrePnjFOYSWTbxm/Nrla0aPslJfmvdCvqtVc=", "narHash": "sha256-dpW3UKG2NTboxxYGzOX4nZiH8YI++CpgosHmVaquOEI=",
"owner": "hyprwm", "owner": "hyprwm",
"repo": "hyprgraphics", "repo": "hyprgraphics",
"rev": "c6e7b9f673f4360bc813d3dc75028f75ee88d3f8", "rev": "8699c38f0e4a1ca3bfc84f84ba020509ced1f133",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -548,17 +584,17 @@
"hyprutils": "hyprutils", "hyprutils": "hyprutils",
"hyprwayland-scanner": "hyprwayland-scanner", "hyprwayland-scanner": "hyprwayland-scanner",
"hyprwire": "hyprwire", "hyprwire": "hyprwire",
"nixpkgs": "nixpkgs_4", "nixpkgs": "nixpkgs_5",
"pre-commit-hooks": "pre-commit-hooks", "pre-commit-hooks": "pre-commit-hooks",
"systems": "systems_2", "systems": "systems_2",
"xdph": "xdph" "xdph": "xdph"
}, },
"locked": { "locked": {
"lastModified": 1785434837, "lastModified": 1786298417,
"narHash": "sha256-5xgKSbsFzLC9XvMH3iRhYuVBn4w0eo6LzuxY21uRIVw=", "narHash": "sha256-nJZCCA1YXQqnLQSNVrtY+IxK0pnVLV5qJSw79axtpCo=",
"owner": "hyprwm", "owner": "hyprwm",
"repo": "Hyprland", "repo": "Hyprland",
"rev": "8668a5392179f99fb9ab3699ede233484bee0b51", "rev": "f7daeb7f79d48745a2894367e9e73229ac162abe",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -600,11 +636,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1784196523, "lastModified": 1784533903,
"narHash": "sha256-ahtKMGXFJdlQNhatQm1+BBU/pGfGYnAqQt3vWvq4p8s=", "narHash": "sha256-Ee78BRFi+MrmgHmmW+2dZUEI1R3cssEzza0ar3fsNX8=",
"owner": "hyprwm", "owner": "hyprwm",
"repo": "hyprland-guiutils", "repo": "hyprland-guiutils",
"rev": "a6ccb6cb112ed5a244c0191fb972347ecfa893e0", "rev": "a16ad89ed5fb4192c966018a80c652de8d96f748",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -731,11 +767,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1784323413, "lastModified": 1785843795,
"narHash": "sha256-XnAVV+H4f8Xdv0yZcSwJ5kCjLyE8fHxPeLX6a3HSrAU=", "narHash": "sha256-DFc543bQN94Kt+RsD3Hiu7qCA1uKdqaFJKPMjzANKGU=",
"owner": "hyprwm", "owner": "hyprwm",
"repo": "hyprutils", "repo": "hyprutils",
"rev": "5f03477ab3a005ff27c527486f551883535aea2f", "rev": "5a7b8cf221914ce4714407950e4ffbdddcd8b66f",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -785,11 +821,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1778410714, "lastModified": 1784465130,
"narHash": "sha256-o6RzFj4nJXaPRY7EM01siuCQeT41RfwwmcmFQqwFJJg=", "narHash": "sha256-ak5fWEmWZyax8trkV4aphdvjrbUiSyl6qS+y5GwBS7Y=",
"owner": "hyprwm", "owner": "hyprwm",
"repo": "hyprwire", "repo": "hyprwire",
"rev": "85148a8e612808cf5ddb25d0b3c5840f3498a7dc", "rev": "7d935bb54674aa0fbd327d2a6888bd0630079ed0",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -800,14 +836,14 @@
}, },
"hytale-launcher": { "hytale-launcher": {
"inputs": { "inputs": {
"nixpkgs": "nixpkgs_5" "nixpkgs": "nixpkgs_6"
}, },
"locked": { "locked": {
"lastModified": 1785342502, "lastModified": 1786205183,
"narHash": "sha256-qu4abwEmOHOzpdBUigpLfmHObkRgJp5sRjbnnyEKzSo=", "narHash": "sha256-+mhhWk6V7jmLW7kXkFRYQ3yDNVxQzuiAwkD6Nwb9LnE=",
"owner": "JPyke3", "owner": "JPyke3",
"repo": "hytale-launcher-nix", "repo": "hytale-launcher-nix",
"rev": "2bc2d0dd6fcd4c4a61d9ab33b2149b21286e79d1", "rev": "34131e0812cde0b9335f1acafbedfa17431325e8",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -899,11 +935,11 @@
"xwayland-satellite-unstable": "xwayland-satellite-unstable" "xwayland-satellite-unstable": "xwayland-satellite-unstable"
}, },
"locked": { "locked": {
"lastModified": 1785494453, "lastModified": 1785857305,
"narHash": "sha256-nK6DCmFpPgaHweU2Y8BMxutfTihwXJ2XkxaoMZPBpMQ=", "narHash": "sha256-25q05zpF1sqOCxPPUG9DPPGd+EDW7SiAOWCzBWRS7r0=",
"owner": "sodiboo", "owner": "sodiboo",
"repo": "niri-flake", "repo": "niri-flake",
"rev": "68414146fbe13d8fce7748cf2f4e9e46e4834e2e", "rev": "9ee3e13b60643448228353097880521658b2fe0e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -932,11 +968,11 @@
"niri-unstable": { "niri-unstable": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1784570726, "lastModified": 1785701241,
"narHash": "sha256-9EMn69JBcFWFgUM7f0VBAX+jBby5b9H3M59U75+5yI4=", "narHash": "sha256-ircVOzPWRircI39ac/tqJajr5OoJxEVrDlBb05TULEk=",
"owner": "YaLTeR", "owner": "YaLTeR",
"repo": "niri", "repo": "niri",
"rev": "7f26c3ee804fb6ed458ef7fb0e3c794f14e0b3bc", "rev": "feb3e43f1475e0865bb89cbd1e898b34d1d2ccf6",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -949,14 +985,14 @@
"inputs": { "inputs": {
"flake-compat": "flake-compat_2", "flake-compat": "flake-compat_2",
"flake-parts": "flake-parts_3", "flake-parts": "flake-parts_3",
"nixpkgs": "nixpkgs_6" "nixpkgs": "nixpkgs_7"
}, },
"locked": { "locked": {
"lastModified": 1785437982, "lastModified": 1785870829,
"narHash": "sha256-m0mLVZc4RmzlBMjPOFh+rnALT92jMXJqQtLBMP9jo90=", "narHash": "sha256-l+RTmz09TxwWJRLQuc+cKi3yY0K4PSz8tRPTbBUvaVo=",
"owner": "xddxdd", "owner": "xddxdd",
"repo": "nix-cachyos-kernel", "repo": "nix-cachyos-kernel",
"rev": "8dfc5b3a553819ba50f601d804a3df64360bd5d8", "rev": "879f45ee15a3b06fdbbf9b6dc825c5fbca137fcd",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -984,7 +1020,7 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"inputs": { "inputs": {
"nixpkgs": "nixpkgs_7" "nixpkgs": "nixpkgs_8"
}, },
"locked": { "locked": {
"lastModified": 1785232496, "lastModified": 1785232496,
@@ -1032,14 +1068,14 @@
"argononed": "argononed", "argononed": "argononed",
"flake-compat": "flake-compat_3", "flake-compat": "flake-compat_3",
"nixos-images": "nixos-images", "nixos-images": "nixos-images",
"nixpkgs": "nixpkgs_8" "nixpkgs": "nixpkgs_9"
}, },
"locked": { "locked": {
"lastModified": 1783459375, "lastModified": 1785596452,
"narHash": "sha256-S2pb+Mtv0qTeRr+6J5ESgelNjG2YKl4WqKjdPrJx5rM=", "narHash": "sha256-KT/OleUMpSKsWgi0eTuqS/0GD4ucPQcvLgmvlw8ZuCM=",
"owner": "nvmd", "owner": "nvmd",
"repo": "nixos-raspberrypi", "repo": "nixos-raspberrypi",
"rev": "c845922f260b306d4529a4535bbb6e7f8cfe2887", "rev": "7e39508bcf9c1da82cf11c1e22f74f9d9fd0fe10",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1052,7 +1088,7 @@
"nixos-wsl": { "nixos-wsl": {
"inputs": { "inputs": {
"flake-compat": "flake-compat_4", "flake-compat": "flake-compat_4",
"nixpkgs": "nixpkgs_9" "nixpkgs": "nixpkgs_10"
}, },
"locked": { "locked": {
"lastModified": 1784642409, "lastModified": 1784642409,
@@ -1070,11 +1106,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1785318670, "lastModified": 1785828668,
"narHash": "sha256-dN6Ou5x/+23FZLEpYP3IffO+NyJFzUlGumt1uu3MMaY=", "narHash": "sha256-8fsyqeO+mJqvIzeO4xIpgJe/f7MTbbVTEC6RT6WSXNs=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "0954f7ee2f6bb3dc7d4e3d0d8bcb8fd4bde4cfc5", "rev": "e72e4f299401a3689d4b3d5fc6496b11db7064eb",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1086,11 +1122,11 @@
}, },
"nixpkgs-darwin": { "nixpkgs-darwin": {
"locked": { "locked": {
"lastModified": 1784834831, "lastModified": 1785067121,
"narHash": "sha256-yj0LPLnsmYoLmA3FGANjeTEwej0/DHjZBXWnDQDUuIs=", "narHash": "sha256-rdJdWxAcg5fnntU4DjPivPdVEN4F+VJavw+UWpEMeUI=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "51fe96f9107566e6b8eeb7fc4ba696c01e548b04", "rev": "329c3d2af6d1b618705150ea39f72c15eb4e613e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1102,11 +1138,11 @@
}, },
"nixpkgs-lib": { "nixpkgs-lib": {
"locked": { "locked": {
"lastModified": 1782614948, "lastModified": 1785031560,
"narHash": "sha256-ePjCwr1sNm9NYUqywL7QfK3JnlS015msC+eBu2zKlp8=", "narHash": "sha256-OmshNvn2vupOFpYinLUu+1Dnpu4n7Q5N3ggGVNHpkUI=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nixpkgs.lib", "repo": "nixpkgs.lib",
"rev": "db3f255737b94216eb71cce308e2912cf6bc2d7c", "rev": "0e79af5e3d4dcfcd676ab5ba3f95d2e3352e078c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1117,11 +1153,11 @@
}, },
"nixpkgs-master": { "nixpkgs-master": {
"locked": { "locked": {
"lastModified": 1785500885, "lastModified": 1786363475,
"narHash": "sha256-iNwmTIXImHMnlXNG4EuTZOuvwt9qZAUM6GnRakZ5fc0=", "narHash": "sha256-YU0FKw3bKh/t8bx9Sb/vNG7hVaLzK5Wqy4QcZGm6624=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "24692924db907f18d3b4cf3ef52e7909b02ce40c", "rev": "6f90103c0e9f8c317e1c85d54467c1bd1a636190",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1149,11 +1185,11 @@
}, },
"nixpkgs_10": { "nixpkgs_10": {
"locked": { "locked": {
"lastModified": 1785454630, "lastModified": 1783776592,
"narHash": "sha256-LQy14TZp77TwbQf40gg1V3jo8FwJG0jGDkAH+zRHqg8=", "narHash": "sha256-UgCQzxeWI75XM8G+hPrPh+MKzEPjG3SpAj7dtqSbksA=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "1559d3daa3ecc813a650b79375ea61b6741b8746", "rev": "e7a3ca8092b61ff85b6a45bf863ea2b2d6a661b3",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1164,6 +1200,22 @@
} }
}, },
"nixpkgs_11": { "nixpkgs_11": {
"locked": {
"lastModified": 1786106723,
"narHash": "sha256-zDSUbpoeo/9ZmD2+wXnzxoo1+uhL8vxc0b8yuYMKYq0=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "f13ff45afd1bb73e640eaa08a7066dbed07e3238",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_12": {
"locked": { "locked": {
"lastModified": 1784555310, "lastModified": 1784555310,
"narHash": "sha256-/FCliTPgiuV1owejZFNx3Ch9irdvkOfOFl+HHZ+DrtM=", "narHash": "sha256-/FCliTPgiuV1owejZFNx3Ch9irdvkOfOFl+HHZ+DrtM=",
@@ -1179,7 +1231,7 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_12": { "nixpkgs_13": {
"locked": { "locked": {
"lastModified": 1774709303, "lastModified": 1774709303,
"narHash": "sha256-D3Q07BbIA2KnTcSXIqqu9P586uWxN74zNoCH3h2ESHg=", "narHash": "sha256-D3Q07BbIA2KnTcSXIqqu9P586uWxN74zNoCH3h2ESHg=",
@@ -1195,7 +1247,7 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_13": { "nixpkgs_14": {
"locked": { "locked": {
"lastModified": 1745279238, "lastModified": 1745279238,
"narHash": "sha256-AQ7M9wTa/Pa/kK5pcGTgX/DGqMHyzsyINfN7ktsI7Fo=", "narHash": "sha256-AQ7M9wTa/Pa/kK5pcGTgX/DGqMHyzsyINfN7ktsI7Fo=",
@@ -1211,13 +1263,13 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_14": { "nixpkgs_15": {
"locked": { "locked": {
"lastModified": 1784796856, "lastModified": 1786106723,
"narHash": "sha256-vwxWgF+Gj276WznzGb1LxGsK/39HaQwgQXiU3EkC844=", "narHash": "sha256-CgKDSHL6rqAAQkkvg1xaZDQXb77+4XW73iGcUMJ+2w0=",
"rev": "e2587caef70cea85dd97d7daab492899902dbf5d", "rev": "f13ff45afd1bb73e640eaa08a7066dbed07e3238",
"type": "tarball", "type": "tarball",
"url": "https://releases.nixos.org/nixos/unstable/nixos-26.11pre1040357.e2587caef70c/nixexprs.tar.xz" "url": "https://releases.nixos.org/nixos/unstable/nixos-26.11pre1049422.f13ff45afd1b/nixexprs.tar.xz"
}, },
"original": { "original": {
"type": "tarball", "type": "tarball",
@@ -1255,11 +1307,11 @@
}, },
"nixpkgs_4": { "nixpkgs_4": {
"locked": { "locked": {
"lastModified": 1784356753, "lastModified": 1785454630,
"narHash": "sha256-12KrbMiWLcf8m7pCvAtZh1ZrgF85ZXDXvfR/fWTKy84=", "narHash": "sha256-LQy14TZp77TwbQf40gg1V3jo8FwJG0jGDkAH+zRHqg8=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "61b7c44c4073f0b827768aff0049561b5110ea5a", "rev": "1559d3daa3ecc813a650b79375ea61b6741b8746",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1271,11 +1323,11 @@
}, },
"nixpkgs_5": { "nixpkgs_5": {
"locked": { "locked": {
"lastModified": 1785090369, "lastModified": 1786106723,
"narHash": "sha256-m0pDuRJG7EDo9ri+4Ksu83VsI+PlxNC9lNBfydejce4=", "narHash": "sha256-zDSUbpoeo/9ZmD2+wXnzxoo1+uhL8vxc0b8yuYMKYq0=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "624af665418d3c65d544145b4d34ad696439570e", "rev": "f13ff45afd1bb73e640eaa08a7066dbed07e3238",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1287,11 +1339,27 @@
}, },
"nixpkgs_6": { "nixpkgs_6": {
"locked": { "locked": {
"lastModified": 1785382966, "lastModified": 1785967620,
"narHash": "sha256-TzNPxZZV/qnV8U5fEtrvcMF/GppHnlWm16RDHddPOyE=", "narHash": "sha256-IItrdb7Puk05RqOBWZYFC5X6Wl1sJmCfh5MWVHw5iMM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "ba889d5db7c07eaf5cb8f37835d447d935c51b21", "rev": "b7c2ada94fe99c15b0dbcf4d11fd7850b957a436",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_7": {
"locked": {
"lastModified": 1785859399,
"narHash": "sha256-pY4X50au95QrTpAbEm08pURmeU3/Ud2oa0s2XzpDdz8=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "85f62611fa3f3eacbcfe3bc7a6d6518b443ca442",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1301,7 +1369,7 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_7": { "nixpkgs_8": {
"locked": { "locked": {
"lastModified": 1767892417, "lastModified": 1767892417,
"narHash": "sha256-8bW3q88CEg2u4hSP66Vf4lpbLonHz7hqDNBMcCY7E9U=", "narHash": "sha256-8bW3q88CEg2u4hSP66Vf4lpbLonHz7hqDNBMcCY7E9U=",
@@ -1314,34 +1382,18 @@
"url": "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz" "url": "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz"
} }
}, },
"nixpkgs_8": {
"locked": {
"lastModified": 1782847189,
"narHash": "sha256-twXPFqFsrrY5r28Zh7Homgcp2gUMBgQ6WDS98Q/3xFI=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b6018f87da91d19d0ab4cf979885689b469cdd41",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-25.11",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_9": { "nixpkgs_9": {
"locked": { "locked": {
"lastModified": 1783776592, "lastModified": 1784856561,
"narHash": "sha256-UgCQzxeWI75XM8G+hPrPh+MKzEPjG3SpAj7dtqSbksA=", "narHash": "sha256-J+Bx1Z6Oeoj2FgnBhRMKyUhhtDoOpTgXYaVLZpDjW4A=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e7a3ca8092b61ff85b6a45bf863ea2b2d6a661b3", "rev": "597283ad8aa0b331c788e97c4c262d58877074ef",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "NixOS", "owner": "NixOS",
"ref": "nixos-unstable", "ref": "nixos-26.05",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }
@@ -1349,15 +1401,15 @@
"nixvim": { "nixvim": {
"inputs": { "inputs": {
"flake-parts": "flake-parts_4", "flake-parts": "flake-parts_4",
"nixpkgs": "nixpkgs_11", "nixpkgs": "nixpkgs_12",
"systems": "systems_4" "systems": "systems_4"
}, },
"locked": { "locked": {
"lastModified": 1785364321, "lastModified": 1785763201,
"narHash": "sha256-BLuHl+nZKb+FDq3GAM6L+UBEiyVepXANA31fT1F56pw=", "narHash": "sha256-wA373y/B9orM3HatLu9oS+Ke5lmdZyBl/bdjd2gLMq4=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nixvim", "repo": "nixvim",
"rev": "acd69cc15d57004e8cb4495034320263a3d362ea", "rev": "c7be49306b23a952c0151cf4bbeacd944ed82f2a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1378,11 +1430,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1783439237, "lastModified": 1785549842,
"narHash": "sha256-WUr8JF2v3n4Y30E5dxv4sAgNJXpVDBoCQNoQ/V4+n4o=", "narHash": "sha256-DCwBZmGsySF7oKGTRgEv2HvpxVXkHT+38VhTM76k0B4=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "b70bb66c7bcd162642f3a609bc16843c7059f503", "rev": "a9f987b57594e845e3e5cdd423b9a70846d70308",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1393,14 +1445,14 @@
}, },
"omp-nix": { "omp-nix": {
"inputs": { "inputs": {
"nixpkgs": "nixpkgs_12" "nixpkgs": "nixpkgs_13"
}, },
"locked": { "locked": {
"lastModified": 1785431079, "lastModified": 1786241080,
"narHash": "sha256-qeUK5296t82+fZR9cWWNLK/u1+ZEuBYmhJFWDtWzzc0=", "narHash": "sha256-Ho4UwswLVt7caOnLcwmWLgBeqAsp5Vyd/YOZlZQiKVM=",
"ref": "main", "ref": "main",
"rev": "fef8579df5738a03eeac3b7ee0ac76a248903d7e", "rev": "c1af41588796514252420f67c5f994df7dad155d",
"revCount": 331, "revCount": 364,
"type": "git", "type": "git",
"url": "https://git.molez.org/mandlm/omp-nix" "url": "https://git.molez.org/mandlm/omp-nix"
}, },
@@ -1436,7 +1488,7 @@
"inputs": { "inputs": {
"libcamera-src": "libcamera-src", "libcamera-src": "libcamera-src",
"libpisp-src": "libpisp-src", "libpisp-src": "libpisp-src",
"nixpkgs": "nixpkgs_13", "nixpkgs": "nixpkgs_14",
"rpi-bluez-firmware-src": "rpi-bluez-firmware-src", "rpi-bluez-firmware-src": "rpi-bluez-firmware-src",
"rpi-firmware-nonfree-src": "rpi-firmware-nonfree-src", "rpi-firmware-nonfree-src": "rpi-firmware-nonfree-src",
"rpi-firmware-src": "rpi-firmware-src", "rpi-firmware-src": "rpi-firmware-src",
@@ -1465,6 +1517,7 @@
"flake-file": "flake-file", "flake-file": "flake-file",
"flake-parts": "flake-parts_2", "flake-parts": "flake-parts_2",
"font-patcher": "font-patcher", "font-patcher": "font-patcher",
"grimoire": "grimoire",
"heliumFlake": "heliumFlake", "heliumFlake": "heliumFlake",
"home-manager": "home-manager", "home-manager": "home-manager",
"hyprland": "hyprland", "hyprland": "hyprland",
@@ -1477,7 +1530,7 @@
"nixos-hardware": "nixos-hardware", "nixos-hardware": "nixos-hardware",
"nixos-raspberrypi": "nixos-raspberrypi", "nixos-raspberrypi": "nixos-raspberrypi",
"nixos-wsl": "nixos-wsl", "nixos-wsl": "nixos-wsl",
"nixpkgs": "nixpkgs_10", "nixpkgs": "nixpkgs_11",
"nixpkgs-master": "nixpkgs-master", "nixpkgs-master": "nixpkgs-master",
"nixvim": "nixvim", "nixvim": "nixvim",
"omp-nix": "omp-nix", "omp-nix": "omp-nix",
@@ -1596,15 +1649,15 @@
}, },
"spicetify-nix": { "spicetify-nix": {
"inputs": { "inputs": {
"nixpkgs": "nixpkgs_14", "nixpkgs": "nixpkgs_15",
"systems": "systems_5" "systems": "systems_5"
}, },
"locked": { "locked": {
"lastModified": 1785048222, "lastModified": 1786252193,
"narHash": "sha256-LjFVfwxensz76SjnvofF1Jsw+xTLd8Qp31W0J6nh2XI=", "narHash": "sha256-a9SbkJWloPso00G4zIUkerd9n2qRyDYoDPeUc4O3ME8=",
"owner": "Gerg-L", "owner": "Gerg-L",
"repo": "spicetify-nix", "repo": "spicetify-nix",
"rev": "17e524f330c282d31c32dfe076222d4a12277886", "rev": "a87616995724d27079b495ca07318512af799449",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1633,11 +1686,11 @@
"tinted-zed": "tinted-zed" "tinted-zed": "tinted-zed"
}, },
"locked": { "locked": {
"lastModified": 1784676123, "lastModified": 1786216702,
"narHash": "sha256-ndyanKzw90yX2nUVFmTuYqXidUNymtMfgmIHyNdhht0=", "narHash": "sha256-fOOmw9tUYeqWVnK2w2NiuMTmGIbluj8xiBFTTFDCcEE=",
"owner": "nix-community", "owner": "nix-community",
"repo": "stylix", "repo": "stylix",
"rev": "66714e5ce44269ecc58c20d9196da8dbe1b27a31", "rev": "b67debfd2db1eb1f0fd8740b950f598bbaf74b8f",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1724,15 +1777,16 @@
}, },
"systems_6": { "systems_6": {
"locked": { "locked": {
"lastModified": 1681028828, "lastModified": 1774449309,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", "narHash": "sha256-brhZ8DmuGtzkCYHJg4HEd602amKm89Y9ytsFZ5uWD1w=",
"owner": "nix-systems", "owner": "nix-systems",
"repo": "default", "repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "rev": "c29398b59d2048c4ab79345812849c9bd15e9150",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-systems", "owner": "nix-systems",
"ref": "future-26.11",
"repo": "default", "repo": "default",
"type": "github" "type": "github"
} }
@@ -1756,11 +1810,11 @@
"tinted-schemes": { "tinted-schemes": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1781968807, "lastModified": 1785153830,
"narHash": "sha256-yYO3Vw2M0y3TAUqt+9+Mj0zwP3XDTF5/PXcPhhFQ1ZM=", "narHash": "sha256-fNdfCTeCXU3tZG3TMincd+u68qBHQgCr2Ljr/M1mWP0=",
"owner": "tinted-theming", "owner": "tinted-theming",
"repo": "schemes", "repo": "schemes",
"rev": "2ccef2f4b22e3cab5a9292811f7133a07eeba4a7", "rev": "9bd28ed313560db3c5b605c63bc4e309e78e3fc8",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1772,11 +1826,11 @@
"tinted-tmux": { "tinted-tmux": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1782012462, "lastModified": 1785031658,
"narHash": "sha256-2iDiD8DQLwS1lGuD9TS8WlvNyDoTs6krWntJbtB2zGo=", "narHash": "sha256-mZp9O2LjzdMzlqQF3l3fjqsuPBzXy+1qTfBEUGjTlpk=",
"owner": "tinted-theming", "owner": "tinted-theming",
"repo": "tinted-tmux", "repo": "tinted-tmux",
"rev": "8c4e750f738a742bd73377ee41d3dadedebedef4", "rev": "5d2c67f61ea7af36f16865ab6d541cdba41dc257",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1788,11 +1842,11 @@
"tinted-zed": { "tinted-zed": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1782009766, "lastModified": 1785030526,
"narHash": "sha256-VUhBjpGvWqHI7rWeyMYb/u87YJSXHKfVV6S+IelWeO8=", "narHash": "sha256-klZf8UviewRkxuu74Bhbq6tqy7oxebQC7UVRWbbtQxU=",
"owner": "tinted-theming", "owner": "tinted-theming",
"repo": "base16-zed", "repo": "base16-zed",
"rev": "5e8350bcd354e3241ab681a265fa6ef060c40be1", "rev": "16f5a8adf4a6b1310d0a61ab172de963e8f76a02",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1840,6 +1894,23 @@
"type": "github" "type": "github"
} }
}, },
"vpkmerge": {
"flake": false,
"locked": {
"lastModified": 1783195121,
"narHash": "sha256-DjGEiL6Zfm1chawjeT23KXKvmncCjDssFzguPmHNWUw=",
"owner": "Slush97",
"repo": "vpkmerge",
"rev": "f716f7a95aa64cb8534b18c6edc81f29a849db9a",
"type": "github"
},
"original": {
"owner": "Slush97",
"ref": "v0.19.0",
"repo": "vpkmerge",
"type": "github"
}
},
"x1e-kernel": { "x1e-kernel": {
"locked": { "locked": {
"lastModified": 1782927159, "lastModified": 1782927159,
@@ -1883,11 +1954,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1784371182, "lastModified": 1786032767,
"narHash": "sha256-S8A1lezEalltWcCp3gAic5lssS0xTSISK6fKODefhOk=", "narHash": "sha256-C5K27sF/jaQe1BgB1/575r01oTAvw6mrDWPS1qUl6X0=",
"owner": "hyprwm", "owner": "hyprwm",
"repo": "xdg-desktop-portal-hyprland", "repo": "xdg-desktop-portal-hyprland",
"rev": "08d99f727944dd15e4740090305e31c5fb92a50a", "rev": "688feb3d88404598f12440a668136e74044391de",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1936,11 +2007,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1785480078, "lastModified": 1786164819,
"narHash": "sha256-wWRW/Teo+58EMeTpVVEAqYid1qLzpB/PViQJCv7Xxvc=", "narHash": "sha256-tvBlGAYyzHYdLwn035bRCrB1mcMjvNNavcNZ293AIIA=",
"owner": "youwen5", "owner": "youwen5",
"repo": "zen-browser-flake", "repo": "zen-browser-flake",
"rev": "b7d4cc2778143a228675cd8bb7efdfa111638ac8", "rev": "f9af5f7017cea1c159e17922288fb38ff94d28cd",
"type": "github" "type": "github"
}, },
"original": { "original": {
+1
View File
@@ -12,6 +12,7 @@
inputs.nixpkgs-lib.follows = "nixpkgs"; inputs.nixpkgs-lib.follows = "nixpkgs";
}; };
font-patcher.url = "github:Doloro1978/nix-nerd-fonts-patcher"; font-patcher.url = "github:Doloro1978/nix-nerd-fonts-patcher";
grimoire.url = "github:Slush97/grimoire";
heliumFlake = { heliumFlake = {
url = "github:vikingnope/helium-browser-nix-flake"; url = "github:vikingnope/helium-browser-nix-flake";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";