mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 09:53:55 -05:00
Aly Raffauf
d51b0b7a60
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / adjustor-build (push) Waiting to run
nix-build / clean-install-build (push) Waiting to run
nix-build / hhd-ui-build (push) Waiting to run
nix-build / rofi-bluetooth-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / pacifidlog-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
67 lines
2.1 KiB
Nix
67 lines
2.1 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.desktop.gnome.enable {
|
|
# nixpkgs.overlays = [
|
|
# # GNOME 46: triple-buffering-v4-46
|
|
# (final: prev: {
|
|
# gnome = prev.gnome.overrideScope (gnomeFinal: gnomePrev: {
|
|
# mutter = gnomePrev.mutter.overrideAttrs (old: {
|
|
# src = pkgs.fetchFromGitLab {
|
|
# domain = "gitlab.gnome.org";
|
|
# owner = "vanvugt";
|
|
# repo = "mutter";
|
|
# rev = "triple-buffering-v4-46";
|
|
# hash = "sha256-nz1Enw1NjxLEF3JUG0qknJgf4328W/VvdMjJmoOEMYs=";
|
|
# };
|
|
# });
|
|
# });
|
|
# })
|
|
# ];
|
|
|
|
security.pam.services = {
|
|
# login.fprintAuth = false;
|
|
|
|
gdm = {
|
|
enableGnomeKeyring = true;
|
|
gnupg.enable = true;
|
|
kwallet.enable = true;
|
|
};
|
|
|
|
# gdm-fingerprint = lib.mkIf (config.services.fprintd.enable) {
|
|
# text = ''
|
|
# auth required pam_shells.so
|
|
# auth requisite pam_nologin.so
|
|
# auth requisite pam_faillock.so preauth
|
|
# auth required ${pkgs.fprintd}/lib/security/pam_fprintd.so
|
|
# auth optional pam_permit.so
|
|
# auth required pam_env.so
|
|
# auth [success=ok default=1] ${pkgs.gnome.gdm}/lib/security/pam_gdm.so
|
|
# auth optional ${pkgs.gnome.gnome-keyring}/lib/security/pam_gnome_keyring.so
|
|
|
|
# account include login
|
|
|
|
# password required pam_deny.so
|
|
|
|
# session include login
|
|
# session optional ${pkgs.gnome.gnome-keyring}/lib/security/pam_gnome_keyring.so auto_start
|
|
# '';
|
|
# };
|
|
};
|
|
|
|
# Enable GNOME and GDM.
|
|
services = {
|
|
gnome.tracker-miners.enable = true;
|
|
udev.packages = with pkgs; [gnome-settings-daemon];
|
|
|
|
xserver = {
|
|
desktopManager.gnome.enable = true;
|
|
displayManager.gdm.enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|