initial commit

This commit is contained in:
2026-03-22 15:33:52 -05:00
commit f594fc4a30
5 changed files with 308 additions and 0 deletions

43
home.nix Normal file
View File

@@ -0,0 +1,43 @@
{ config, pkgs, inputs, ... }:
{
home.username = "mrwafflecats";
home.homeDirectory = "/home/mrwafflecats";
# home.sessionVariables.NIXOS_OZONE_WL = "1";
home.packages = with pkgs; [
# hyprland
aria2 # cli downloader
neofetch
btop
lm_sensors
pciutils
usbutils
foot # backup terminal
microsoft-edge
hyprpaper
hyprpolkitagent
steam
discord
pcmanfm # File Manager
pwvucontrol # Pipewire volume control
cava # sound visualizer
dunst # notification daemon
];
programs.bash = {
enable = true;
enableCompletion = true;
};
programs.tofi.enable = true;
programs.eww.enable = true; # status bar and widgets
programs.kitty.enable = true;
# wayland.windowManager.hyprland.enable = true;
home.stateVersion = "25.11";
}