23 lines
324 B
Nix
23 lines
324 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
# Home Manager state version
|
|
home.stateVersion = "25.11";
|
|
|
|
home.username = "avravels";
|
|
home.homeDirectory = "/home/avravels";
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
wofi
|
|
];
|
|
|
|
imports = [
|
|
./programs/kitty.nix
|
|
./programs/zsh.nix
|
|
./programs/direnv.nix
|
|
./wm/hyperland.nix
|
|
];
|
|
|
|
}
|