23 lines
384 B
Nix
23 lines
384 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
# Home Manager state version
|
|
home.stateVersion = "25.11";
|
|
|
|
home.username = "avravels";
|
|
home.homeDirectory = "/home/avravels";
|
|
|
|
imports = [
|
|
./other/fonts.nix
|
|
./programs/kitty.nix
|
|
./programs/zsh.nix
|
|
./programs/direnv.nix
|
|
./programs/firefox.nix
|
|
./wm/dconf.nix
|
|
./wm/gtk.nix
|
|
./wm/hyprland.nix
|
|
./wm/hyprpaper.nix
|
|
];
|
|
|
|
}
|