nest-home/home.nix

37 lines
451 B
Nix
Raw Permalink Normal View History

2024-08-16 08:31:35 +00:00
{ configs, pkgs, ... }:
{
2024-08-16 08:22:12 +00:00
2024-08-16 08:54:22 +00:00
imports = [
2024-08-16 08:56:11 +00:00
./redis/Redis.nix
./Hackey/Hackey.nix
2024-08-16 08:54:22 +00:00
];
2024-08-16 08:22:12 +00:00
home.username = "vic";
home.homeDirectory = "/home/vic";
2024-08-16 12:14:27 +00:00
home.enableNixpkgsReleaseCheck = false;
2024-08-16 08:22:12 +00:00
home.packages = [
2024-08-16 08:44:22 +00:00
pkgs.helix #editor
pkgs.bat #modern cat
2024-08-16 08:27:03 +00:00
];
2024-08-16 08:22:12 +00:00
home.stateVersion = "24.05";
home.sessionVariables = {
EDITOR = "hx";
VISUAL = "hx";
PAGER = "less";
};
programs.home-manager.enable = true;
2024-08-16 08:31:35 +00:00
}