This commit is contained in:
2026-06-14 13:05:57 +01:00
parent 8ec7b3429f
commit 0fb5245525
7 changed files with 651 additions and 562 deletions
+16 -7
View File
@@ -4,7 +4,8 @@
modules, modules,
inputs, inputs,
... ...
}: { }:
{
den.aspects.doloro-desktop = { den.aspects.doloro-desktop = {
includes = [ includes = [
<den/primary-user> <den/primary-user>
@@ -35,28 +36,35 @@
# modules.easyeffects # modules.easyeffects
modules.lavd modules.lavd
modules.ai modules.ai
modules.omp # modules.omp
modules.podman modules.podman
<modules/ai/ollama-cuda> <modules/ai/ollama-cuda>
]; ];
nixos = { nixos =
{
config, config,
pkgs, pkgs,
... ...
}: { }:
{
users.users.doloro = { users.users.doloro = {
shell = pkgs.fish; shell = pkgs.fish;
hashedPasswordFile = config.sops.secrets."doloro-hashed_password".path; hashedPasswordFile = config.sops.secrets."doloro-hashed_password".path;
extraGroups = ["libvirtd"]; extraGroups = [ "libvirtd" ];
}; };
virtualisation.libvirtd.enable = true; virtualisation.libvirtd.enable = true;
# virtualisation.waydroid.enable = true;
# # Newer kernel versions may need
# virtualisation.waydroid.package = pkgs.waydroid-nftables;
programs.virt-manager.enable = true; programs.virt-manager.enable = true;
}; };
homeManager = { homeManager =
{
home, home,
pkgs, pkgs,
... ...
}: { }:
{
wayland.windowManager.hyprland.settings = { wayland.windowManager.hyprland.settings = {
monitor = [ monitor = [
"HDMI-A-1, 1920x1080@60, 0x0, 1" "HDMI-A-1, 1920x1080@60, 0x0, 1"
@@ -86,6 +94,7 @@
android-studio android-studio
blender blender
bottles bottles
pi-coding-agent
]; ];
programs.lutris.enable = true; programs.lutris.enable = true;
nixpkgs.overlays = [ nixpkgs.overlays = [
+17 -1
View File
@@ -14,9 +14,25 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
home.packages = [ home.packages = [
pkgs.opencode
pkgs.claude-code pkgs.claude-code
]; ];
programs.opencode = {
enable = true;
extraPackages = with pkgs; [
rust-analyzer
typescript-language-server
];
context = ''
Instructions:
- Do NOT preemptively load all references - use lazy loading based on actual need
- When loaded, treat content as mandatory instructions that override defaults
- Follow references recursively when needed
'';
settings = {
"lsp" = true;
};
};
}; };
}; };
} }
+4 -1
View File
@@ -3,12 +3,15 @@
den, den,
inputs, inputs,
... ...
}: { }:
{
flake-file.inputs = { flake-file.inputs = {
omp-nix.url = "git+https://git.molez.org/mandlm/omp-nix?ref=main"; omp-nix.url = "git+https://git.molez.org/mandlm/omp-nix?ref=main";
}; };
modules.omp = { modules.omp = {
homeManager = { homeManager = {
imports = [ inputs.omp-nix.homeManagerModules.omp ];
oh-my-pi.enable = true;
}; };
}; };
} }
+3 -1
View File
@@ -1,4 +1,5 @@
{modules, ...}: { { modules, ... }:
{
modules.dunst = { modules.dunst = {
homeManager = { homeManager = {
services.dunst = { services.dunst = {
@@ -6,6 +7,7 @@
settings = { settings = {
global = { global = {
font = "Noto Nerd Font 8"; font = "Noto Nerd Font 8";
monitor = "DP-2";
}; };
}; };
}; };
+124 -69
View File
@@ -4,7 +4,8 @@
lib, lib,
inputs, inputs,
... ...
}: { }:
{
# Its in its own folder for future modulizaion efforts # Its in its own folder for future modulizaion efforts
flake-file.inputs = { flake-file.inputs = {
nixvim = { nixvim = {
@@ -14,9 +15,13 @@
}; };
modules = { modules = {
nixvim = { nixvim = {
nixos = {home-manager, ...}: { nixos =
{ home-manager, ... }:
{
}; };
homeManager = {pkgs, ...}: let homeManager =
{ pkgs, ... }:
let
tiny-code-action = pkgs.vimUtils.buildVimPlugin { tiny-code-action = pkgs.vimUtils.buildVimPlugin {
name = "tiny-code-action.nvim"; name = "tiny-code-action.nvim";
src = pkgs.fetchFromGitHub { src = pkgs.fetchFromGitHub {
@@ -25,9 +30,10 @@
rev = "main"; rev = "main";
hash = "sha256-UF9zeO5Uujdt2MEwy2d2Lhk6JRnEN4vrEvYslv0/zaA"; hash = "sha256-UF9zeO5Uujdt2MEwy2d2Lhk6JRnEN4vrEvYslv0/zaA";
}; };
nvimSkipModules = ["tiny-code-action.previewers.snacks"]; nvimSkipModules = [ "tiny-code-action.previewers.snacks" ];
}; };
in { in
{
imports = [ imports = [
inputs.nixvim.homeModules.nixvim inputs.nixvim.homeModules.nixvim
]; ];
@@ -40,6 +46,10 @@
}; };
}; };
colorschemes.gruvbox-material.enable = true; colorschemes.gruvbox-material.enable = true;
# colorschemes.melange = {
# enable = true;
# autoLoad = false;
# };
extraPackages = with pkgs; [ extraPackages = with pkgs; [
# formatters # formatters
nixfmt-rs nixfmt-rs
@@ -49,6 +59,8 @@
nixd nixd
tree-sitter tree-sitter
rust-analyzer rust-analyzer
rustc
cargo
]; ];
performance.byteCompileLua = { performance.byteCompileLua = {
enable = true; enable = true;
@@ -58,8 +70,12 @@
configs = true; configs = true;
}; };
plugins = { plugins = {
luasnip.enable = true;
cmp_luasnip.enable = true;
fidget.enable = true;
mini-comment.enable = true;
cord.enable = true;
todo-comments.enable = true; todo-comments.enable = true;
lsp-status.enable = true;
transparent.enable = true; transparent.enable = true;
which-key.enable = true; which-key.enable = true;
snacks.enable = true; snacks.enable = true;
@@ -67,8 +83,8 @@
enable = true; enable = true;
settings = { settings = {
formatters_by_ft = { formatters_by_ft = {
nix = ["nixfmt"]; nix = [ "nixfmt" ];
rust = ["rustfmt"]; rust = [ "rustfmt" ];
"_" = [ "_" = [
"squeeze_blanks" "squeeze_blanks"
"trim_whitespace" "trim_whitespace"
@@ -142,34 +158,37 @@
enable = true; enable = true;
settings = { settings = {
sections = { sections = {
lualine_a = ["mode"]; lualine_a = [ "mode" ];
lualine_b = [ lualine_b = [
"branch" "branch"
"diff" "diff"
"diagnostics" "diagnostics"
]; ];
lualine_c = ["filename"]; lualine_c = [ "filename" ];
lualine_x = [ lualine_x = [
"encoding" "encoding"
"fileformat" "fileformat"
"filetype" "filetype"
]; ];
lualine_y = ["progress"]; lualine_y = [ "progress" ];
lualine_z = ["location"]; lualine_z = [ "location" ];
}; };
inactive_sections = { inactive_sections = {
lualine_a = []; lualine_a = [ ];
lualine_b = []; lualine_b = [ ];
lualine_c = ["filename"]; lualine_c = [ "filename" ];
lualine_x = ["location"]; lualine_x = [ "location" ];
lualine_y = []; lualine_y = [ ];
lualine_z = []; lualine_z = [ ];
}; };
}; };
}; };
web-devicons.enable = true; web-devicons.enable = true;
vim-dadbod-completion.enable = true; vim-dadbod-completion.enable = true;
telescope.enable = true; telescope = {
enable = true;
extensions.file-browser.enable = true;
};
lazygit.enable = true; lazygit.enable = true;
mini-indentscope = { mini-indentscope = {
enable = true; enable = true;
@@ -188,21 +207,46 @@
}; };
}; };
lsp-lines.enable = true; lsp-lines.enable = true;
diaglist = { trouble = {
enable = true; enable = true;
settings = { settings = {
debug = false; auto_close = true;
use_diagnostic_signs = true;
}; };
}; };
cmp = { cmp = {
enable = true; enable = true;
autoEnableSources = true; autoEnableSources = true;
cmdline = {
":" = {
mapping.__raw = "cmp.mapping.preset.cmdline()";
sources = [
{ name = "path"; }
{ name = "cmdline"; }
];
};
"/" = {
mapping.__raw = "cmp.mapping.preset.cmdline()";
sources = [
{ name = "buffer"; }
];
};
};
settings = { settings = {
snippet.expand.__raw = "function(args) require('luasnip').lsp_expand(args.body) end";
sources = [ sources = [
{ {
name = "nvim_lsp"; name = "nvim_lsp";
priority = 100; priority = 100;
} }
{
name = "nvim_lsp_signature_help";
priority = 90;
}
{
name = "luasnip";
priority = 75;
}
{ {
name = "buffer"; name = "buffer";
priority = 50; priority = 50;
@@ -218,8 +262,10 @@
"<C-e>" = "cmp.mapping.close()"; "<C-e>" = "cmp.mapping.close()";
"<C-f>" = "cmp.mapping.scroll_docs(4)"; "<C-f>" = "cmp.mapping.scroll_docs(4)";
"<CR>" = "cmp.mapping.confirm({ select = true })"; "<CR>" = "cmp.mapping.confirm({ select = true })";
"<S-Tab>" = "cmp.mapping(function(fallback) if cmp.visible() then cmp.select_prev_item() else fallback() end end, {'i', 's'})"; "<S-Tab>" =
"<Tab>" = "cmp.mapping(function(fallback) if cmp.visible() then cmp.select_next_item() else fallback() end end, {'i', 's'})"; "cmp.mapping(function(fallback) if cmp.visible() then cmp.select_prev_item() elseif require('luasnip').jumpable(-1) then require('luasnip').jump(-1) else fallback() end end, {'i', 's'})";
"<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'})";
}; };
window = { window = {
completion = { completion = {
@@ -276,14 +322,7 @@
}; };
}; };
extraPlugins = with pkgs; [ extraPlugins = with pkgs; [
# vimPlugins.mini-completion
vimPlugins.mini-comment
vimPlugins.melange-nvim
vimPlugins.telescope-file-browser-nvim
vimPlugins.lsp-progress-nvim
vimPlugins.cmp-cmdline
vimPlugins.cmp-nvim-lsp-signature-help vimPlugins.cmp-nvim-lsp-signature-help
vimPlugins.cord-nvim
tiny-code-action tiny-code-action
]; ];
opts = { opts = {
@@ -292,6 +331,7 @@
tabstop = 2; tabstop = 2;
shiftwidth = 2; shiftwidth = 2;
termguicolors = true; termguicolors = true;
completeopt = "menu,menuone,noselect";
}; };
globals = { globals = {
mapleader = " "; mapleader = " ";
@@ -300,31 +340,6 @@
-- 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 })
local cmp = require('cmp')
cmp.setup.cmdline(':', {
mapping = cmp.mapping.preset.cmdline(),
sources = cmp.config.sources(
{ { name = 'path' } },
{ { name = 'cmdline' } }
),
window = {
completion = {
border = 'rounded',
},
},
})
cmp.setup.cmdline('/', {
mapping = cmp.mapping.preset.cmdline(),
sources = {
{ name = 'buffer' }
},
window = {
completion = {
border = 'rounded',
},
},
})
require('tiny-code-action').setup({ require('tiny-code-action').setup({
backend = 'vim', backend = 'vim',
picker = 'snacks', picker = 'snacks',
@@ -379,16 +394,20 @@
}; };
} }
{ {
action = "<cmd>DiaglistToggle<cr>"; action = "<cmd>Trouble diagnostics toggle<cr>";
key = "<leader>fd"; key = "<leader>fd";
options = { options = {
silent = true; silent = true;
desc = "Toggle diagnostics (Trouble)";
}; };
} }
{ {
action = "<cmd>lua require('tiny-code-action').code_action()<cr>"; action = "<cmd>lua require('tiny-code-action').code_action()<cr>";
key = "<leader>ca"; key = "<leader>ca";
mode = ["n" "x"]; mode = [
"n"
"x"
];
options = { options = {
silent = true; silent = true;
}; };
@@ -397,58 +416,94 @@
{ {
action = "<cmd>lua vim.lsp.buf.definition()<cr>"; action = "<cmd>lua vim.lsp.buf.definition()<cr>";
key = "gd"; key = "gd";
options = { silent = true; desc = "Go to definition"; }; options = {
silent = true;
desc = "Go to definition";
};
} }
{ {
action = "<cmd>lua vim.lsp.buf.declaration()<cr>"; action = "<cmd>lua vim.lsp.buf.declaration()<cr>";
key = "gD"; key = "gD";
options = { silent = true; desc = "Go to declaration"; }; options = {
silent = true;
desc = "Go to declaration";
};
} }
{ {
action = "<cmd>lua vim.lsp.buf.implementation()<cr>"; action = "<cmd>lua vim.lsp.buf.implementation()<cr>";
key = "gi"; key = "gi";
options = { silent = true; desc = "Go to implementation"; }; options = {
silent = true;
desc = "Go to implementation";
};
} }
{ {
action = "<cmd>lua vim.lsp.buf.type_definition()<cr>"; action = "<cmd>lua vim.lsp.buf.type_definition()<cr>";
key = "<leader>D"; key = "<leader>D";
options = { silent = true; desc = "Go to type definition"; }; options = {
silent = true;
desc = "Go to type definition";
};
} }
{ {
action = "<cmd>Telescope lsp_references<cr>"; action = "<cmd>Telescope lsp_references<cr>";
key = "gr"; key = "gr";
options = { silent = true; desc = "LSP references"; }; options = {
silent = true;
desc = "LSP references";
};
} }
{ {
action = "<cmd>lua vim.lsp.buf.hover()<cr>"; action = "<cmd>lua vim.lsp.buf.hover()<cr>";
key = "K"; key = "K";
options = { silent = true; desc = "Hover docs"; }; options = {
silent = true;
desc = "Hover docs";
};
} }
{ {
action = "<cmd>lua vim.lsp.buf.signature_help()<cr>"; action = "<cmd>lua vim.lsp.buf.signature_help()<cr>";
key = "<C-k>"; key = "<C-k>";
mode = ["n" "i"]; mode = [
options = { silent = true; desc = "Signature help"; }; "n"
"i"
];
options = {
silent = true;
desc = "Signature help";
};
} }
{ {
action = "<cmd>lua vim.lsp.buf.rename()<cr>"; action = "<cmd>lua vim.lsp.buf.rename()<cr>";
key = "<leader>rn"; key = "<leader>rn";
options = { silent = true; desc = "Rename symbol"; }; options = {
silent = true;
desc = "Rename symbol";
};
} }
{ {
action = "<cmd>lua vim.diagnostic.goto_prev()<cr>"; action = "<cmd>lua vim.diagnostic.goto_prev()<cr>";
key = "[d"; key = "[d";
options = { silent = true; desc = "Previous diagnostic"; }; options = {
silent = true;
desc = "Previous diagnostic";
};
} }
{ {
action = "<cmd>lua vim.diagnostic.goto_next()<cr>"; action = "<cmd>lua vim.diagnostic.goto_next()<cr>";
key = "]d"; key = "]d";
options = { silent = true; desc = "Next diagnostic"; }; options = {
silent = true;
desc = "Next diagnostic";
};
} }
{ {
action = "<cmd>lua vim.diagnostic.open_float()<cr>"; action = "<cmd>lua vim.diagnostic.open_float()<cr>";
key = "<leader>e"; key = "<leader>e";
options = { silent = true; desc = "Show diagnostic float"; }; options = {
silent = true;
desc = "Show diagnostic float";
};
} }
]; ];
}; };
+7 -3
View File
@@ -1,10 +1,13 @@
{modules, ...}: { { modules, ... }:
{
modules.tmux = { modules.tmux = {
homeManager = { homeManager =
{
home, home,
pkgs, pkgs,
... ...
}: { }:
{
programs.tmux = { programs.tmux = {
enable = true; enable = true;
plugins = with pkgs.tmuxPlugins; [ plugins = with pkgs.tmuxPlugins; [
@@ -17,6 +20,7 @@
set -g status-bg black set -g status-bg black
set -g status-fg white set -g status-fg white
set -g mouse on set -g mouse on
set -g extended-keys on
''; '';
}; };
}; };
Generated
+68 -68
View File
@@ -120,11 +120,11 @@
"cachyos-kernel": { "cachyos-kernel": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1780413908, "lastModified": 1781018471,
"narHash": "sha256-T15bnskj20rdc4vJ55bFF2lVCVR8edilWn0hiYR7vVs=", "narHash": "sha256-jQHNMqg2+Iey/WnF+RNvEs+HG3HFVdCX5W/7wne3UIM=",
"owner": "CachyOS", "owner": "CachyOS",
"repo": "linux-cachyos", "repo": "linux-cachyos",
"rev": "a61f943f5e94b75c5600a2968cb699d0e37945b3", "rev": "39d9d125940996ed2eb32425ffec7f2de6ac7fba",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -136,11 +136,11 @@
"cachyos-kernel-patches": { "cachyos-kernel-patches": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1780462466, "lastModified": 1781257359,
"narHash": "sha256-t6c7FTqMB0skEz+4tei5v8GEyL4fRDgx24oW3LrnYiE=", "narHash": "sha256-J2/PBS+5u6osnWZUB7UTjLaD+S8diM+6hlOWDoX/+bw=",
"owner": "CachyOS", "owner": "CachyOS",
"repo": "kernel-patches", "repo": "kernel-patches",
"rev": "bb41330bd4372672f552beda66712fb70b17f0fa", "rev": "46b45d26b536195f3ee8bc510b96b7fa47567163",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -172,11 +172,11 @@
"treefmt-nix": "treefmt-nix" "treefmt-nix": "treefmt-nix"
}, },
"locked": { "locked": {
"lastModified": 1780557299, "lastModified": 1781161664,
"narHash": "sha256-FF1zYCdsh9q1QS8kFMYYGiaDUzxdBBfdtQT+x/15CpA=", "narHash": "sha256-pALZH5SItoXJChOILlncSDlevnrxwaQrCmNVGrcn8ME=",
"owner": "Mic92", "owner": "Mic92",
"repo": "direnv-instant", "repo": "direnv-instant",
"rev": "0df681e3c0d544d7dc723cc9750a50cfc37b0095", "rev": "57f5385e4c3df324201079553a98dd8e36c83858",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -190,11 +190,11 @@
"nixpkgs": "nixpkgs_2" "nixpkgs": "nixpkgs_2"
}, },
"locked": { "locked": {
"lastModified": 1780894562, "lastModified": 1781152676,
"narHash": "sha256-c3430xwxwhHipl3jigUGMMBfpaMylDqytW/kdmB3ZGs=", "narHash": "sha256-RxWs5ND31KzTG7wvMM+PMfUjyNpmIEr999lqNARaM5o=",
"owner": "nix-community", "owner": "nix-community",
"repo": "disko", "repo": "disko",
"rev": "24fed06cac83bcc44ac8efbb57cab1a82fa0bedc", "rev": "ff8702b4de27f72b4c78573dfb89ec74e36abdf1",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -284,11 +284,11 @@
}, },
"flake-file": { "flake-file": {
"locked": { "locked": {
"lastModified": 1779051720, "lastModified": 1781217157,
"narHash": "sha256-+jbXnODsR19pFKB0x/6kHhFgW6yV6N+CGClFr45eDU8=", "narHash": "sha256-N3q/SP2Ropk336e9KSgLh7kpROY6P70dprYdbPIfd5c=",
"owner": "vic", "owner": "vic",
"repo": "flake-file", "repo": "flake-file",
"rev": "c58eb27d9434e5be0c8693f1eb18d47035bc21ba", "rev": "ce63eaf7ebfe04a176653f66385a7f0a36380cee",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -497,11 +497,11 @@
"utils": "utils" "utils": "utils"
}, },
"locked": { "locked": {
"lastModified": 1780855759, "lastModified": 1781324208,
"narHash": "sha256-1x5KfTHXzsxyeixg0q7+WhBX6uKPHDHLdBDEUV4dR4I=", "narHash": "sha256-bygOOsF1MFbhpl420ja6Md5bGIyRIJ2/UDS2nqEX1eA=",
"owner": "vikingnope", "owner": "vikingnope",
"repo": "helium-browser-nix-flake", "repo": "helium-browser-nix-flake",
"rev": "59981da497f383c61e1d2d20b86743a6663355bf", "rev": "87c5dbbabd13547db8e14937c77bd3abce315d56",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -517,11 +517,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1781009359, "lastModified": 1781365335,
"narHash": "sha256-w/mZkRscTatf8NWyUstli8ROzM/eopxZzi0WRjoeYkU=", "narHash": "sha256-zqDBhXMzfbdlO7F2bGHe7MOtB3xngd/+4ieMHDC+ZXo=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "c58ead12efcac436afffa93a22099a5595eb4157", "rev": "5b6f5733726a1b2ccafb5dec6ac4ca7299fad66c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -605,11 +605,11 @@
"xdph": "xdph" "xdph": "xdph"
}, },
"locked": { "locked": {
"lastModified": 1781028094, "lastModified": 1781437668,
"narHash": "sha256-SIhZzLadXftCPHaSC56brK85oPFN7DPlG/a8Qq7EhRM=", "narHash": "sha256-UjNWFgYMIzUyvYwFEZPERVx8MnKexbO5Jpzi08i1LLo=",
"owner": "hyprwm", "owner": "hyprwm",
"repo": "Hyprland", "repo": "Hyprland",
"rev": "b6633c4120a3f9607d6af719ceb6b0cbaa4605f9", "rev": "c123867ebed53a3a429cadc8af79639d5af9304a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -929,11 +929,11 @@
"xwayland-satellite-unstable": "xwayland-satellite-unstable" "xwayland-satellite-unstable": "xwayland-satellite-unstable"
}, },
"locked": { "locked": {
"lastModified": 1781038035, "lastModified": 1781234038,
"narHash": "sha256-X+uFuOQVWiouzl7eSV5JUgg4CAbv779QgEqOxIo6Gls=", "narHash": "sha256-jo4a47qDgsx1F1i0MtHZl12FfzqKJOES25vbm0ZUxeI=",
"owner": "sodiboo", "owner": "sodiboo",
"repo": "niri-flake", "repo": "niri-flake",
"rev": "27982962e1dee4994b05d2b0b4a29f8de2529a55", "rev": "eb5789cba8d37802d330df5a13c691622c83121f",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -984,11 +984,11 @@
"nixpkgs": "nixpkgs_6" "nixpkgs": "nixpkgs_6"
}, },
"locked": { "locked": {
"lastModified": 1780771919, "lastModified": 1781292859,
"narHash": "sha256-cbace1ZTWYFG0luPL7OFlUxDh/t9lmPj+Isvg9hLN0k=", "narHash": "sha256-etlzg6/H1NuHGTnrxxhvdmhDYQls/AMHk1IrBbNc0WM=",
"owner": "xddxdd", "owner": "xddxdd",
"repo": "nix-cachyos-kernel", "repo": "nix-cachyos-kernel",
"rev": "3d940a534da0ba6bce60e345ff2c9c7b062087fb", "rev": "c57a7ab46f5e9b4eb32ed74ba6e7cd5bcd3a6e64",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1003,11 +1003,11 @@
"nixpkgs": "nixpkgs_7" "nixpkgs": "nixpkgs_7"
}, },
"locked": { "locked": {
"lastModified": 1781020964, "lastModified": 1781168557,
"narHash": "sha256-fS7xTi2j2iso5Hj7RNZLv/acDlCT+fgMVkVk40A7Uco=", "narHash": "sha256-LOnLQ2tpYF9gqIDDr3+j3DbpJJr/QCH6zPRT2GzEUOE=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "32c2cd9e46286c4eced3dc6b613c659126bf3cca", "rev": "6358ff76821101c178e3ab4919a62799bfe3652e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1071,11 +1071,11 @@
"nixpkgs": "nixpkgs_9" "nixpkgs": "nixpkgs_9"
}, },
"locked": { "locked": {
"lastModified": 1780765279, "lastModified": 1781182279,
"narHash": "sha256-md6QHmlIx40bQkun43M2eT8aav5GURGkXEMFwof6uZs=", "narHash": "sha256-V5EQQbDnmdiXGQXrEF1PEL7QYsFqfH8N1E89Z5ONwFk=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NixOS-WSL", "repo": "NixOS-WSL",
"rev": "3e6d8af994e2a2d31af7a91863d7c0d6e278d951", "rev": "5675822ba756e6e56f8f6a5a76e90e0da2ece94d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1086,11 +1086,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1780243769, "lastModified": 1780749050,
"narHash": "sha256-x5UQuRsH3MqI0U9afaXSNqzTPSeZlRLvFAav2Ux1pNw=", "narHash": "sha256-3av0pIjlOWQ6rDbNOmpUSvbNnJkGORQKKjb4LtCZsIY=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "331800de5053fcebacf6813adb5db9c9dca22a0c", "rev": "a799d3e3886da994fa307f817a6bc705ae538eeb",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1133,11 +1133,11 @@
}, },
"nixpkgs_10": { "nixpkgs_10": {
"locked": { "locked": {
"lastModified": 1780749050, "lastModified": 1781074563,
"narHash": "sha256-3av0pIjlOWQ6rDbNOmpUSvbNnJkGORQKKjb4LtCZsIY=", "narHash": "sha256-md8WlXOlfnIeHeOScMTTHFyf2d6iaTwPl2apR5EQ3P4=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "a799d3e3886da994fa307f817a6bc705ae538eeb", "rev": "9ae611a455b90cf061d8f332b977e387bda8e1ca",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1197,11 +1197,11 @@
}, },
"nixpkgs_14": { "nixpkgs_14": {
"locked": { "locked": {
"lastModified": 1779560665, "lastModified": 1781074563,
"narHash": "sha256-NpH8iEQ5JHv/BtUuzTEXUMDxPLetCDzIv4OxL8H7Kps=", "narHash": "sha256-d34lhgOet4IqYMnCxbIvwFBMOyTV6PT4TyNEOP0/ZhU=",
"rev": "64c08a7ca051951c8eae34e3e3cb1e202fe36786", "rev": "9ae611a455b90cf061d8f332b977e387bda8e1ca",
"type": "tarball", "type": "tarball",
"url": "https://releases.nixos.org/nixos/unstable/nixos-26.05pre1004030.64c08a7ca051/nixexprs.tar.xz" "url": "https://releases.nixos.org/nixos/unstable/nixos-26.11pre1014179.9ae611a455b9/nixexprs.tar.xz"
}, },
"original": { "original": {
"type": "tarball", "type": "tarball",
@@ -1210,11 +1210,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1780747962, "lastModified": 1780930886,
"narHash": "sha256-IX7G1dlKrOqPOImfbo7ADDfV5yU1+j+MRChI3TL4tAA=", "narHash": "sha256-rppURzHviaQN131F+nLiLdGfcb0uCd9gGP0E5+iw9MI=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "cbb5cf358f50aa6acc9efd6113b7bcfbc352cd73", "rev": "8c3cede7ddc26bd659d2d383b5610efbd2c7a16e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1271,11 +1271,11 @@
}, },
"nixpkgs_6": { "nixpkgs_6": {
"locked": { "locked": {
"lastModified": 1780751787, "lastModified": 1781246015,
"narHash": "sha256-nWR7F46SyrLvN8Ot39XJDpVCswekGakXlOD4KsTYKW0=", "narHash": "sha256-C3D5TBgght7LBaqm5oGNRf6CynGl5lGED4jcDw2ZOOk=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "00fa9a692bafc08a86061886f888b843bf7fbdb0", "rev": "7bd229cbe77d7746d64a1e8c1a6f6cc08f606fc4",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1337,11 +1337,11 @@
"systems": "systems_4" "systems": "systems_4"
}, },
"locked": { "locked": {
"lastModified": 1781034432, "lastModified": 1781388258,
"narHash": "sha256-+UuS36un3lXLtKsGCYQnOn51hDhB+dZ1SHoHXClnV/0=", "narHash": "sha256-Kx1zxra9sZ215H3OiWUfkulu8N2v3iu19wqlzpD/Ac0=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nixvim", "repo": "nixvim",
"rev": "e9fbbd56eab78751ba4c166c31a1667042528ced", "rev": "e3c908fdf6dff268b04ffb6758bcfc7c018489b9",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1380,11 +1380,11 @@
"nixpkgs": "nixpkgs_12" "nixpkgs": "nixpkgs_12"
}, },
"locked": { "locked": {
"lastModified": 1780981246, "lastModified": 1781370169,
"narHash": "sha256-3q8dZYqYwRkslQZvhqvs/xZfz32L8EayTVIS6zKwUqU=", "narHash": "sha256-8YdyF3+nfzquZdChx555IFW+X34QYxNShJbK2NPruFw=",
"ref": "main", "ref": "main",
"rev": "611f0b280b81c0187eb8612f2d335dbab90e5071", "rev": "261e7137ce1b84bad5eb51a8302050b0710f2af2",
"revCount": 115, "revCount": 166,
"type": "git", "type": "git",
"url": "https://git.molez.org/mandlm/omp-nix" "url": "https://git.molez.org/mandlm/omp-nix"
}, },
@@ -1582,11 +1582,11 @@
"systems": "systems_5" "systems": "systems_5"
}, },
"locked": { "locked": {
"lastModified": 1780857688, "lastModified": 1781425310,
"narHash": "sha256-e4E6M6erJIus5Cm/A4faaaTuUfof1uvcviAPSh7tmLU=", "narHash": "sha256-GTBka4Df/ZOacmisI/DI2LICyNChEqn/giah83LucdM=",
"owner": "Gerg-L", "owner": "Gerg-L",
"repo": "spicetify-nix", "repo": "spicetify-nix",
"rev": "aad629e8261f219b0a5b3a2189b09d65216a0983", "rev": "aeaf7c81a45d3761da61cb05bfc370ac6d1b0441",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1898,11 +1898,11 @@
"xwayland-satellite-unstable": { "xwayland-satellite-unstable": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1779745227, "lastModified": 1781226823,
"narHash": "sha256-yqY7RtEJGJiENzR0GwL6q69tSAy6xAAmAcLuIhLjPf8=", "narHash": "sha256-28696iIw8uE0ZUyFTtzhEM8xMh85clCYypMxkvUi+sc=",
"owner": "Supreeeme", "owner": "Supreeeme",
"repo": "xwayland-satellite", "repo": "xwayland-satellite",
"rev": "5d1efbc9dc3ab1c10160b656e0247f3325daf0f2", "rev": "8575d0ef55d70f9b4c46b6bffb3accf912217e1e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -1918,11 +1918,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1780637620, "lastModified": 1781415399,
"narHash": "sha256-ngPdHinPyF0AMxRr32qt+TZCv0sagmooBW14u6DfjSU=", "narHash": "sha256-t7l/1scSsVAlw1r/vjEIX+SquZa/z6ibcOLBuXdJH7E=",
"owner": "youwen5", "owner": "youwen5",
"repo": "zen-browser-flake", "repo": "zen-browser-flake",
"rev": "8c62bc6a72ac5a5b8d1b41b2b88dfed9d9932c48", "rev": "83ab3c3da2ba1a76a20882dbd253711d2cb8dcba",
"type": "github" "type": "github"
}, },
"original": { "original": {