Starting to break out for different XPS systems

This commit is contained in:
2025-10-10 22:30:51 -05:00
parent 3166ad5b32
commit 1e291f4366
37 changed files with 898 additions and 1041 deletions

27
home-manager/default.nix Normal file
View File

@@ -0,0 +1,27 @@
{ config, pkgs, ... }:
{
imports = [
./programs
./services
./themes
];
# Home Manager settings
home.stateVersion = "25.05";
# User-specific packages
home.packages = with pkgs; [
# Sway-related packages
swaybg
swayidle
swaylock
wlogout
wofi
grim
slurp
mako
wl-clipboard
# Add user-specific packages here
];
}