initial commit

This commit is contained in:
2023-09-05 04:35:35 +05:30
commit 92675f27bf
24 changed files with 1161 additions and 0 deletions

18
hosts/home.nix Normal file
View 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;
}