Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
szinn committed Nov 25, 2024
1 parent 990fdf2 commit 944c66f
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 30 deletions.
2 changes: 1 addition & 1 deletion homes/_modules/security/one-password.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ in {

config = mkIf cfg.enable {
home.packages = with pkgs; [
_1password
_1password-cli
];
};
}
2 changes: 1 addition & 1 deletion hosts/odin/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# "homebrew/services" # to use `brew services``
];
brews = [
"postgresql@16"
"postgresql@17"
];
casks = [
"1password"
Expand Down
54 changes: 28 additions & 26 deletions modules/nvim/ui/noice.nix
Original file line number Diff line number Diff line change
@@ -1,35 +1,37 @@
{
plugins.noice = {
enable = true;
notify = {
enabled = false;
};
messages = {
enabled = true; # Adds a padding-bottom to neovim statusline when set to false for some reason
};
lsp = {
message = {
enabled = true;
settings = {
format = {
filter = {
pattern = [":%s*%%s*s:%s*" ":%s*%%s*s!%s*" ":%s*%%s*s/%s*" "%s*s:%s*" ":%s*s!%s*" ":%s*s/%s*"];
icon = "";
lang = "regex";
};
replace = {
pattern = [":%s*%%s*s:%w*:%s*" ":%s*%%s*s!%w*!%s*" ":%s*%%s*s/%w*/%s*" "%s*s:%w*:%s*" ":%s*s!%w*!%s*" ":%s*s/%w*/%s*"];
icon = "󱞪";
lang = "regex";
};
};
progress = {
enabled = false;
view = "mini";
lsp = {
message = {
enabled = true;
};
progress = {
enabled = false;
view = "mini";
};
};
};
popupmenu = {
enabled = true;
backend = "nui";
};
format = {
filter = {
pattern = [":%s*%%s*s:%s*" ":%s*%%s*s!%s*" ":%s*%%s*s/%s*" "%s*s:%s*" ":%s*s!%s*" ":%s*s/%s*"];
icon = "";
lang = "regex";
messages = {
enabled = true; # Adds a padding-bottom to neovim statusline when set to false for some reason
};
popupmenu = {
enabled = true;
backend = "nui";
};
replace = {
pattern = [":%s*%%s*s:%w*:%s*" ":%s*%%s*s!%w*!%s*" ":%s*%%s*s/%w*/%s*" "%s*s:%w*:%s*" ":%s*s!%w*!%s*" ":%s*s/%w*/%s*"];
icon = "󱞪";
lang = "regex";
notify = {
enabled = false;
};
};
};
Expand Down
6 changes: 5 additions & 1 deletion pkgs/_sources/generated.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# This file was generated by nvfetcher, please do not modify it manually.
{ fetchgit, fetchurl, fetchFromGitHub, dockerTools }:
{
fetchgit,
fetchurl,
fetchFromGitHub,
dockerTools,
}: {
talosctl = {
pname = "talosctl";
version = "v1.8.3";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/talosctl.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ in
version = lib.strings.removePrefix "v" packageData.version;

# vendorHash = lib.fakeHash;
vendorHash = "sha256-pWG8DbZ9N57p2Q9w/IzETcvwaSfzaUvJgcz7Th/Oi9c=";
vendorHash = "sha256-/Xt/WZ+5ptxsiUkm6mplilB9gqv3mz+j7tyNikzJtkA=";

ldflags = ["-s" "-w"];

Expand Down

0 comments on commit 944c66f

Please sign in to comment.