Files
nixos/home/server.nix

22 lines
419 B
Nix

{ config, pkgs, ... }:
{
home.username = "th3r00t";
home.homeDirectory = "/home/th3r00t";
nixpkgs.config.allowUnfree = true;
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";
}