Restructured NixOS system configurations to be more modularized

This commit is contained in:
lulusilly 2025-09-13 19:23:00 -04:00
parent 4326a51ef7
commit 4cf7c21ed8
6 changed files with 94 additions and 176 deletions

View file

@ -0,0 +1,29 @@
{ config, pkgs, inputs, ... }
{
# Hyprland looks nice so I'm using it
programs.hyprland = {
enable = true;
withUWSM = true;
xwayland.enable = true;
};
environment.sessionVariables.NIXOS_OZONE_WL = "1";
xdg.portal.enable = true;
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
environment.systemPackages = with pkgs; [
# home-manager # For using Nix Home Manager
zsh # Default user shell
neovim # Terminal text editor
wget # coreutil for some script compatibility
waybar # Status bar
libnotify # Desktop notifications
swww # Wallpaper manager
brightnessctl # For laptop backlight brightness control
grim # screenshot utility
slurp # select utility
wl-clipboard # xclip alternative
rofi-wayland # Dmenu replacement for Wayland
ghostty # Terminal emulator
];
}