21 lines
383 B
Nix
21 lines
383 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
home.username = "th3r00t";
|
|
home.homeDirectory = "/home/th3r00t";
|
|
imports = [
|
|
# modules/hyprland.nix
|
|
./common.nix
|
|
];
|
|
xdg.enable = true;
|
|
programs.nix-index.enable = true;
|
|
fonts.fontconfig.enable = false;
|
|
home.sessionVariables = {
|
|
EDITOR = "nvim";
|
|
BROWSER = "elinks";
|
|
};
|
|
home.packages = with pkgs; [
|
|
htop
|
|
];
|
|
home.stateVersion = "25.05";
|
|
}
|