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

View file

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

View file

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