Files
nixos/home/server.nix
2025-09-11 11:02:14 -04:00

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";
}