init(release): desktop template -> desktop wip

This commit is contained in:
Rasyidan Akbar F. 2025-10-24 11:09:00 +07:00
commit 1ae2855bb1
18 changed files with 63 additions and 92 deletions

View file

@ -1,5 +1,4 @@
{ lib, pkgs, ... }:
{
{ lib, pkgs, ... }: {
# Hyprland user configuration
wayland.windowManager.hyprland = {
enable = lib.mkDefault true;
@ -31,16 +30,15 @@
border_size = 2;
};
decoration = {
rounding = 8;
};
decoration = { rounding = 8; };
};
};
# Hyprland utilities
home.packages = with pkgs; [
# wofi # Launcher
# waybar # Status bar
# dunst # Notifications
];
home.packages = with pkgs;
[
# wofi # Launcher
# waybar # Status bar
# dunst # Notifications
];
}