This commit is contained in:
biscuit
2025-05-06 14:58:15 -05:00
parent e209ddd352
commit 6f6145f1c0
6 changed files with 131 additions and 30 deletions
Binary file not shown.
+28 -6
View File
@@ -1,10 +1,32 @@
{ inputs, config, pkgs, ... }:
{
home.username = "biscuit";
home.homeDirectory = "/home/biscuit";
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [
inputs.nvchad4nix.homeManagerModule
];
programs.bash.enable = true;
home.stateVersion = "23.11"; # Adjust to your system version
home = {
username = "biscuit";
homeDirectory = "/home/biscuit";
};
home.packages = [];
home.sessionVariables = {
EDITOR = "nvim";
};
programs.home-manager.enable = true;
programs.git.enable = true;
programs.nvchad.enable - true;
systemd.user.startServices = "sd-switch";
home.stateVersion = "23.11";
}