mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 12:23:56 -05:00
Aly Raffauf
4da4930db9
fallarbor: added disko and fixed nixos-hardwarem odule import fallarbor: added appropriate flake entries
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
options = {
|
|
alyraffauf.desktop.hyprland.enable =
|
|
lib.mkEnableOption "Enable hyprland and greetd.";
|
|
};
|
|
|
|
config = lib.mkIf config.alyraffauf.desktop.hyprland.enable {
|
|
services = {
|
|
dbus.packages = [pkgs.gcr];
|
|
greetd = {
|
|
enable = true;
|
|
settings = rec {
|
|
default_session = {
|
|
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --remember --cmd Hyprland";
|
|
};
|
|
};
|
|
};
|
|
udev.packages = [pkgs.swayosd];
|
|
};
|
|
|
|
security.pam.services = {
|
|
greetd.enableKwallet = true;
|
|
greetd.enableGnomeKeyring = true;
|
|
swaylock = {};
|
|
};
|
|
|
|
programs = {
|
|
gnupg.agent.pinentryPackage = pkgs.pinentry-gnome3;
|
|
hyprland = {
|
|
enable = true;
|
|
package =
|
|
inputs.hyprland.packages.${pkgs.system}.hyprland;
|
|
};
|
|
};
|
|
|
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
|
|
nix.settings = {
|
|
substituters = ["https://hyprland.cachix.org"];
|
|
trusted-public-keys = [
|
|
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
|
|
];
|
|
};
|
|
};
|
|
}
|