niri: enable home-manager gnome-keyring service

ssh agent doesnt work still
This commit is contained in:
wo2wz 2025-10-26 11:01:16 -04:00
parent 7580be14e6
commit e7fd016afb

View file

@ -1,4 +1,4 @@
{ inputs, config, pkgs, ... }: { inputs, config, pkgs, lib, ... }:
{ {
imports = [ imports = [
@ -21,42 +21,48 @@
"org.freedesktop.impl.portal.Secret" = "gnome-keyring"; "org.freedesktop.impl.portal.Secret" = "gnome-keyring";
}; };
home-manager.users.wo2w.programs.niri.settings = { services.gnome.gnome-keyring.enable = lib.mkForce false;
hotkey-overlay.skip-at-startup = true;
prefer-no-csd = true;
gestures.hot-corners.enable = false; home-manager.users.wo2w = {
input.touchpad.natural-scroll = false; services.gnome-keyring.enable = true;
cursor = { programs.niri.settings = {
theme = "Bibata-Modern-Classic"; hotkey-overlay.skip-at-startup = true;
size = 24; prefer-no-csd = true;
};
layout.focus-ring = { gestures.hot-corners.enable = false;
active.color = config.custom.colors.base0D; input.touchpad.natural-scroll = false;
inactive.color = config.custom.colors.base0E;
};
screenshot-path = "~/Pictures/Screenshots/%F_%H-%M-%S.png"; cursor = {
theme = "Bibata-Modern-Classic";
outputs = { size = 24;
"Sharp Corporation 0x148D Unknown".scale = 2.25; # Laptop builtin screen
"LG Electronics LG Ultra HD 0x0003AC16" = {
scale = 1.7;
position = {
x = 0;
y = 0;
};
focus-at-startup = true;
}; };
"Dell Inc. DELL U2719D 75BWZ83" = { layout.focus-ring = {
scale = 1.1; active.color = config.custom.colors.base0D;
position = { inactive.color = config.custom.colors.base0E;
x = 2259; };
y = 38;
screenshot-path = "~/Pictures/Screenshots/%F_%H-%M-%S.png";
outputs = {
"Sharp Corporation 0x148D Unknown".scale = 2.25; # Laptop builtin screen
"LG Electronics LG Ultra HD 0x0003AC16" = {
scale = 1.7;
position = {
x = 0;
y = 0;
};
focus-at-startup = true;
};
"Dell Inc. DELL U2719D 75BWZ83" = {
scale = 1.1;
position = {
x = 2259;
y = 38;
};
}; };
}; };
}; };