698 current 2024-05-27 16:04:55 24.11.20240524.bfb7a88 6.9.1-zen1 *

This commit is contained in:
zackartz 2024-05-27 16:04:59 -04:00
parent 01c6a7e524
commit 575b7f3af5
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
3 changed files with 46 additions and 44 deletions

72
flake.lock generated
View file

@ -439,6 +439,33 @@
"type": "github"
}
},
"git-hooks": {
"inputs": {
"flake-compat": "flake-compat_3",
"gitignore": "gitignore_2",
"nixpkgs": [
"neovim-nightly-overlay",
"nixpkgs"
],
"nixpkgs-stable": [
"neovim-nightly-overlay",
"nixpkgs"
]
},
"locked": {
"lastModified": 1716213921,
"narHash": "sha256-xrsYFST8ij4QWaV6HEokCUNIZLjjLP1bYC60K8XiBVA=",
"owner": "cachix",
"repo": "git-hooks.nix",
"rev": "0e8fcc54b842ad8428c9e705cb5994eaf05c26a0",
"type": "github"
},
"original": {
"owner": "cachix",
"repo": "git-hooks.nix",
"type": "github"
}
},
"gitignore": {
"inputs": {
"nixpkgs": [
@ -465,7 +492,7 @@
"inputs": {
"nixpkgs": [
"neovim-nightly-overlay",
"pre-commit-hooks",
"git-hooks",
"nixpkgs"
]
},
@ -778,17 +805,17 @@
"inputs": {
"flake-compat": "flake-compat_2",
"flake-parts": "flake-parts_3",
"git-hooks": "git-hooks",
"hercules-ci-effects": "hercules-ci-effects",
"neovim-src": "neovim-src",
"nixpkgs": "nixpkgs_6",
"pre-commit-hooks": "pre-commit-hooks"
"nixpkgs": "nixpkgs_6"
},
"locked": {
"lastModified": 1716818885,
"narHash": "sha256-sBi+rAf30wHnlhwOueoVHExGZFr4o1LTTexe8Llfc1Q=",
"lastModified": 1716827514,
"narHash": "sha256-5qS9Jn3FaEFMGGhS/1mLOUifMFDLPcLczjcdaN7xgyE=",
"owner": "nix-community",
"repo": "neovim-nightly-overlay",
"rev": "241821173b62c73be35e3bc824de4f07bdd3c157",
"rev": "7849e018a09688cd71bde887113954b3ce08739c",
"type": "github"
},
"original": {
@ -1040,33 +1067,6 @@
"type": "github"
}
},
"pre-commit-hooks": {
"inputs": {
"flake-compat": "flake-compat_3",
"gitignore": "gitignore_2",
"nixpkgs": [
"neovim-nightly-overlay",
"nixpkgs"
],
"nixpkgs-stable": [
"neovim-nightly-overlay",
"nixpkgs"
]
},
"locked": {
"lastModified": 1716213921,
"narHash": "sha256-xrsYFST8ij4QWaV6HEokCUNIZLjjLP1bYC60K8XiBVA=",
"owner": "cachix",
"repo": "git-hooks.nix",
"rev": "0e8fcc54b842ad8428c9e705cb5994eaf05c26a0",
"type": "github"
},
"original": {
"owner": "cachix",
"repo": "git-hooks.nix",
"type": "github"
}
},
"pre-commit-hooks-nix": {
"inputs": {
"flake-compat": [
@ -1127,11 +1127,11 @@
"systems": "systems_11"
},
"locked": {
"lastModified": 1716816692,
"narHash": "sha256-7kJwoiRh5FrTd20LFxIoKLwMk4U8mR1OUGTizV1GxNA=",
"lastModified": 1716839997,
"narHash": "sha256-b8SlsccE0WuvQ1A9cL0JiS/btFbzqwBPp7jAsJgNa4M=",
"owner": "raphamorim",
"repo": "rio",
"rev": "07cb7f6cce5f41a2ec01e79ae10d3055da52d5db",
"rev": "804d24ca1f123a0a3bc14f9f69ef97777112fbd0",
"type": "github"
},
"original": {

View file

@ -60,7 +60,7 @@ M.diff = {
},
color = function()
local colors = require("catppuccin.palettes").get_palette()
return { bg = nil }
return { bg = colors.base }
end,
}
@ -70,7 +70,7 @@ M.diagnostics = {
"diagnostics",
color = function()
local colors = require("catppuccin.palettes").get_palette()
return { bg = nil }
return { bg = colors.base }
end,
}
@ -78,7 +78,7 @@ M.encoding = {
"encoding",
color = function()
local colors = require("catppuccin.palettes").get_palette()
return { fg = colors.blue, bg = nil }
return { fg = colors.blue, bg = colors.base }
end,
}
@ -86,7 +86,7 @@ M.fileformat = {
"fileformat",
color = function()
local colors = require("catppuccin.palettes").get_palette()
return { fg = colors.blue, bg = nil }
return { fg = colors.blue, bg = colors.base }
end,
}
@ -99,7 +99,7 @@ M.indentation = {
end,
color = function()
local colors = require("catppuccin.palettes").get_palette()
return { fg = colors.blue, bg = nil }
return { fg = colors.blue, bg = colors.base }
end,
}
@ -132,7 +132,7 @@ M.macro = {
icon = icons.Recording,
color = function()
local colors = require("catppuccin.palettes").get_palette()
return { fg = colors.red, bg = nil }
return { fg = colors.red, bg = colors.base }
end,
}
@ -151,7 +151,7 @@ M.lsp = {
icon = icons.Braces,
color = function()
local colors = require("catppuccin.palettes").get_palette()
return { fg = colors.overlay0, bg = nil }
return { fg = colors.overlay0, bg = colors.base }
end,
}
@ -161,7 +161,7 @@ M.gap = {
end,
color = function()
local colors = require("catppuccin.palettes").get_palette()
return { bg = nil }
return { bg = colors.base }
end,
padding = 0,
}

View file

@ -44,6 +44,8 @@
networking.hostName = "earth"; # Define your hostname.
networking.extraHosts = "127.0.0.1 local-cald.io";
networking.networkmanager = {
enable = true;
unmanaged = ["enp6s0"];