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