unify desktop and laptop configs

This commit is contained in:
2025-08-07 17:41:18 -07:00
parent f920b9bb6f
commit bcfb5772e4
5 changed files with 55 additions and 40 deletions

30
home-manager/desktop.nix Normal file
View File

@@ -0,0 +1,30 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [
# niri wayland compositor
./progs/niri.nix
# statusbar
./progs/eww/eww.nix
# lockscreen
./progs/swaylock.nix
# notification daemon
./progs/dunst.nix
];
home.packages = with pkgs; [
wdisplays
blueman
# used by /etc/nixos logic to launch niri
config.programs.niri.package
];
}