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,14 +1,9 @@
{ lib, pkgs, ... }:
{
{ lib, pkgs, ... }: {
# Niri user configuration
programs.niri = {
settings = {
# Minimal config - expand as needed
input = {
keyboard.xkb = {
layout = "us";
};
};
input = { keyboard.xkb = { layout = "us"; }; };
# Example keybinds
binds = {
@ -31,9 +26,10 @@
};
# Niri utilities
home.packages = with pkgs; [
# fuzzel # Launcher (recommended for niri)
# waybar # Status bar
# dunst # Notifications
];
home.packages = with pkgs;
[
# fuzzel # Launcher (recommended for niri)
# waybar # Status bar
# dunst # Notifications
];
}