mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 07:05:51 +05:30
30 lines
642 B
Nix
30 lines
642 B
Nix
{ inputs, pkgs, lib, ... }: let
|
|
pkgs-hyprland = inputs.hyprland.inputs.nixpkgs.legacyPackages.${pkgs.stdenv.hostPlatform.system};
|
|
in
|
|
{
|
|
# Import wayland config
|
|
imports = [ ./wayland.nix
|
|
./pipewire.nix
|
|
./dbus.nix
|
|
];
|
|
|
|
# Security
|
|
security = {
|
|
pam.services.login.enableGnomeKeyring = true;
|
|
};
|
|
|
|
services.gnome.gnome-keyring.enable = true;
|
|
|
|
programs = {
|
|
hyprland = {
|
|
enable = true;
|
|
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
|
|
xwayland = {
|
|
enable = true;
|
|
};
|
|
portalPackage = pkgs-hyprland.xdg-desktop-portal-hyprland;
|
|
};
|
|
};
|
|
|
|
}
|