backup
This commit is contained in:
Binary file not shown.
+28
-6
@@ -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";
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user