Files
nixos/home-manager/home.nix
T
biscuit 5d7d8e4b4f WIP
2025-05-13 11:22:45 -05:00

34 lines
531 B
Nix

{
inputs, outputs, lib, config, pkgs, ...
}: {
imports = [
../packages/nvim/default.nix
../packages/zsh/default.nix
];
home = {
username = "biscuit";
homeDirectory = "/home/biscuit";
};
home.packages = [
];
home.sessionVariables = {
};
programs.git.enable = true;
programs.bash.shellAliases = {
enable = true;
ll = "ls -l";
};
programs.neovim.enable = true;
systemd.user.startServices = "sd-switch";
programs.home-manager.enable = true;
home.stateVersion = "23.05";
}