Initial commit

This commit is contained in:
2025-11-28 01:41:57 +01:00
commit 0be86c7284
113 changed files with 8498 additions and 0 deletions

40
hosts/orion/home.nix Normal file
View File

@@ -0,0 +1,40 @@
{
pkgs,
config,
...
}:
{
imports = [
# Mostly user-specific configuration
./variables.nix
# Programs
#../../home/programs/nvf
../../home/programs/shell
#../../home/programs/fetch
../../home/programs/git
#../../home/programs/lazygit
# Scripts
#../../home/scripts # All scripts
];
home = {
inherit (config.var) username;
homeDirectory = "/home/" + config.var.username;
packages = with pkgs; [
# Utils
btop
# Provide relevant terminfo
kitty
ghostty
];
# Don't touch this
stateVersion = "24.05";
};
programs.home-manager.enable = true;
}