update system

This commit is contained in:
2025-10-08 14:47:46 +02:00
parent 1b9ceb83a2
commit 9a21cfd01c
3 changed files with 21 additions and 22 deletions
Generated
+15 -15
View File
@@ -23,11 +23,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1756770412, "lastModified": 1759362264,
"narHash": "sha256-+uWLQZccFHwqpGqr2Yt5VsW/PbeJVTn9Dk6SHWhNRPw=", "narHash": "sha256-wfG0S7pltlYyZTM+qqlhJ7GMw2fTF4mLKCIVhLii/4M=",
"owner": "hercules-ci", "owner": "hercules-ci",
"repo": "flake-parts", "repo": "flake-parts",
"rev": "4524271976b625a4a605beefd893f270620fd751", "rev": "758cf7296bee11f1706a574c77d072b8a7baa881",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -82,11 +82,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1758928860, "lastModified": 1759853171,
"narHash": "sha256-ZqaRdd+KoR54dNJPtd7UX4O0X+02YItnTpQVu28lSVI=", "narHash": "sha256-uqbhyXtqMbYIiMqVqUhNdSuh9AEEkiasoK3mIPIVRhk=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "bc2afee55bc5d3b825287829d6592b9cc1405aad", "rev": "1a09eb84fa9e33748432a5253102d01251f72d6d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -125,11 +125,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1758932224, "lastModified": 1759927432,
"narHash": "sha256-rp0A0F8KPU+i78pv08ybSQBhUg5evhZWpPOg7Oy08h4=", "narHash": "sha256-/i1VqvOSoXaeSCW1UbDF4dUgvXy3wkQ4aMnwk3NO0Ko=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "5b5aa069f762fe158dd84cd39f5c1bb8f48cbca9", "rev": "ef8cf06ecce404070508c999be8fb9c86fa62b49",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -148,11 +148,11 @@
"systems": "systems_2" "systems": "systems_2"
}, },
"locked": { "locked": {
"lastModified": 1758931855, "lastModified": 1759927289,
"narHash": "sha256-jTmbWlOxsy9dDP3UdCB6jEO63FtkM3dQG2FOq0b4foI=", "narHash": "sha256-EWdwR9l+JG466rPuNmjjzDPvQAuh37lmhgWa2xeaMdk=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nixvim", "repo": "nixvim",
"rev": "e0f1e4ae4bb8762b7c51c3a514ca19664fad9c3b", "rev": "57006a3ace4a3c889ab61b70fd5d8b197de8314e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -254,11 +254,11 @@
"rust-overlay": "rust-overlay" "rust-overlay": "rust-overlay"
}, },
"locked": { "locked": {
"lastModified": 1758905570, "lastModified": 1759856273,
"narHash": "sha256-CNGnkaiTBYrghHaua1uNhUHn2L86iR2V/znx6ZclJ7U=", "narHash": "sha256-nfSTNERcUMTOHARxqHpRGLB5oZkqSFmb0/EEXCb1Z7A=",
"owner": "uiua-lang", "owner": "uiua-lang",
"repo": "uiua", "repo": "uiua",
"rev": "858a2f594087a227d06347bdf87684026f3a4d83", "rev": "838dd4aa4541899176df3b5ada47055e38a22a2b",
"type": "github" "type": "github"
}, },
"original": { "original": {
+2 -3
View File
@@ -56,7 +56,6 @@ in
shellcheck shellcheck
cmigemo cmigemo
nodejs_22 nodejs_22
cmake
clang-tools clang-tools
glslang glslang
haskellPackages.hoogle haskellPackages.hoogle
@@ -741,7 +740,7 @@ in
vim-surround.enable = true; vim-surround.enable = true;
presence-nvim.enable = true; presence.enable = true;
which-key.enable = true; which-key.enable = true;
@@ -784,7 +783,7 @@ in
# enable = true; # enable = true;
# }; # };
rainbow-delimiters = { rainbow-delimiters.settings = {
enable = true; enable = true;
highlight = [ highlight = [
"DraculaRed" # "RainbowDelimiterRed" "DraculaRed" # "RainbowDelimiterRed"
+4 -4
View File
@@ -82,12 +82,12 @@ myConfig =
((modm .|. shiftMask, xK_Return), spawn terminal) ((modm .|. shiftMask, xK_Return), spawn terminal)
] ]
++ [ ((m .|. modm, k), windows $ f i) ++ [ ((m .|. modm, k), windows $ f i)
| (i, k) <- zip myWorkspaces numPadKeys, | (i, k) <- zip myWorkspaces numPadKeys,
(f, m) <- [(greedyView, 0), (shift, shiftMask)] (f, m) <- [(greedyView, 0), (shift, shiftMask)]
] ]
++ [ ((m .|. modm, k), windows $ f i) ++ [ ((m .|. modm, k), windows $ f i)
| (i, k) <- zip myWorkspaces myWSKeys, | (i, k) <- zip myWorkspaces myWSKeys,
(f, m) <- [(greedyView, 0), (shift, shiftMask)] (f, m) <- [(greedyView, 0), (shift, shiftMask)]
] ]
where where
myWorkspaces = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "0"] myWorkspaces = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "0"]