Moved keyring setup to shared; added mwdblib to mnemosyne

This commit is contained in:
Random936
2026-05-07 22:04:23 -04:00
parent 50a1694767
commit bafb77726c
3 changed files with 7 additions and 5 deletions

View File

@@ -51,11 +51,6 @@
#environment.systemPackages = with pkgs; [
#];
# Keyring Setup
services.gnome.gnome-keyring.enable = true;
security.pam.services.login.enableGnomeKeyring = true;
# Install OpenGL
hardware.graphics = {
enable = true;

View File

@@ -12,4 +12,8 @@
];
users.users.mnemosyne = import ./user.nix;
environment.systemPackages = with pkgs; [
python313Packages.mwdblib
];
}

View File

@@ -62,6 +62,9 @@
services.gvfs.enable = true;
services.tumbler.enable = true;
# Keyring Setup
services.gnome.gnome-keyring.enable = true;
security.pam.services.login.enableGnomeKeyring = true;
# Enable docker service.
virtualisation.docker.enable = true;