mirror of
https://github.com/Username404-59/Dotfiles-NixOS.git
synced 2026-07-03 21:08:08 +02:00
47 lines
861 B
Nix
47 lines
861 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.hyprland = {
|
|
enable = true;
|
|
withUWSM = true;
|
|
xwayland.enable = true;
|
|
};
|
|
services.displayManager.sddm.wayland.enable = true;
|
|
services.displayManager.sddm.enable = true;
|
|
qt.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
uwsm
|
|
app2unit
|
|
rofi
|
|
murale
|
|
awww
|
|
cliphist
|
|
wl-clipboard
|
|
hyprshot
|
|
nwg-look
|
|
hyprsunset
|
|
hyprpolkitagent
|
|
pwvucontrol
|
|
playerctl
|
|
ironbar
|
|
swaybg
|
|
libsForQt5.qtstyleplugin-kvantum
|
|
libsForQt5.qt5ct
|
|
papirus-icon-theme
|
|
(magnetic-catppuccin-gtk.override {
|
|
accent = [ "all" ];
|
|
size = "standard"; #"compact"
|
|
shade = "dark";
|
|
tweaks = [ /*black*/ ];
|
|
})
|
|
xeyes
|
|
networkmanagerapplet
|
|
];
|
|
|
|
xdg.portal = {
|
|
enable = true;
|
|
extraPortals = [ pkgs.xdg-desktop-portal-hyprland ];
|
|
};
|
|
}
|