mirror of
https://github.com/tuxdotrs/nixos-config.git
synced 2025-07-07 02:06:34 +05:30
initial commit
This commit is contained in:
18
hosts/home.nix
Normal file
18
hosts/home.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ 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;
|
||||
}
|
Reference in New Issue
Block a user