added hyperland
This commit is contained in:
parent
51e27d3913
commit
e7ee64f568
5 changed files with 136 additions and 13 deletions
9
modules/home-manager/hyprland.nix
Normal file
9
modules/home-manager/hyprland.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{ pkgs, config, lib, ...}:
|
||||
{
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
extraConfig = ''
|
||||
bind = SUPER, Return, exec, alacritty
|
||||
'';
|
||||
};
|
||||
}
|
||||
9
modules/system/desktop-environments/hyprland.nix
Normal file
9
modules/system/desktop-environments/hyprland.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
libsForQt5.polkit-kde-agent
|
||||
libsForQt5.qt5.qtwayland
|
||||
qt6.qtwayland
|
||||
eww-wayland
|
||||
];
|
||||
}
|
||||
|
|
@ -1,6 +1,10 @@
|
|||
# https://nixos.wiki/wiki/PipeWire
|
||||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
pipewire
|
||||
wireplumber
|
||||
];
|
||||
# rtkit is optional but recommended
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue