Update dependencies

This commit is contained in:
Kiana Sheibani 2024-05-12 19:04:06 -04:00
parent 0a82c47f48
commit 700906bb8f
6 changed files with 15 additions and 32 deletions

View file

@ -104,17 +104,10 @@ in
services.openssh.enable = true;
programs.gnupg.package = pkgs.gnupg.overrideAttrs (orig: {
version = "2.4.0";
src = pkgs.fetchurl {
url = "mirror://gnupg/gnupg/gnupg-2.4.0.tar.bz2";
hash = "sha256-HXkVjdAdmSQx3S4/rLif2slxJ/iXhOosthDGAPsMFIM=";
};
});
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "gnome3";
pinentryPackage = pkgs.pinentry-gnome3;
};
# This value determines the NixOS release from which the default

View file

@ -19,14 +19,10 @@ lib.mkIf (config.platform != "mobile")
qtgraphicaleffects
];
services.xserver = {
enable = true;
displayManager.defaultSession = "hyprland";
displayManager.sddm = {
services.displayManager.defaultSession = "hyprland";
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
theme = "tokyo-night-sddm";
};
};
})