35 lines
614 B
Nix
35 lines
614 B
Nix
{
|
|
inputs, outputs, lib, config, pkgs, ...
|
|
}: {
|
|
imports = [
|
|
../packages/nvim/default.nix
|
|
# ../packages/zsh/default.nix
|
|
../modules/terminal.nix
|
|
# /home/biscuit/Nixos/packages/hyprland/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";
|
|
}
|
|
|