nixos/hosts/caveserver/home.nix

37 lines
687 B
Nix
Raw Normal View History

2024-07-11 20:56:52 +00:00
{ pkgs, inputs, config, ... }:
{
imports = [
../../home/modules
];
snowhawk.neovim = {
enable = true;
package = inputs.neovim-overlay.packages.${pkgs.system}.default;
};
snowhawk.user.enable = false;
snowhawk.defaultPrograms.enable = false;
home.username = "val";
home.homeDirectory = "/home/val";
home.sessionPath = [
"${config.home.homeDirectory}/.cargo/bin"
];
home.packages = with pkgs; [
nix-output-monitor
(writeShellScriptBin "rebuild" ''
2024-07-11 20:57:53 +00:00
home-manager switch -v |& nom
2024-07-11 20:56:52 +00:00
'')
go
rustup
];
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
home.stateVersion = "23.11";
}