16 lines
277 B
Nix
16 lines
277 B
Nix
{config, ...}: {
|
|
programs.hyprland = {
|
|
enable = true;
|
|
withUWSM = true;
|
|
};
|
|
security.pam.services.hyprlock = {};
|
|
|
|
imports = [
|
|
./pipewire.nix
|
|
../workstation.nix
|
|
];
|
|
|
|
home-manager.users.${config.user}.imports = [
|
|
../../home/desktop/hyprland/.
|
|
];
|
|
}
|