mirror of
https://github.com/tuxdotrs/nixos-config.git
synced 2025-07-06 17:56:35 +05:30
19 lines
300 B
Nix
19 lines
300 B
Nix
{ pkgs, username, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../modules/alacritty/home.nix
|
|
../modules/nvim/home.nix
|
|
];
|
|
|
|
home = {
|
|
username = "${username}";
|
|
homeDirectory = "/home/${username}";
|
|
stateVersion = "23.05";
|
|
|
|
packages = with pkgs; [ ];
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|