manatee: Add host manatee

This commit is contained in:
Alexander Heldt
2025-05-02 10:56:22 +02:00
parent c6d4393f95
commit b3a15d7ff9
12 changed files with 477 additions and 0 deletions

22
hosts/manatee/home.nix Normal file
View File

@@ -0,0 +1,22 @@
{ inputs, ... }:
{
imports = [ inputs.home-manager.nixosModules.home-manager ];
config = {
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users.alex = {
programs.home-manager.enable = true;
home.username = "alex";
home.homeDirectory = "/home/alex";
home.packages = [ ];
home.stateVersion = "24.11";
};
};
};
}