the return of hypermac

This commit is contained in:
beanigen 2025-03-03 14:48:08 +08:00
parent d11bfc67ec
commit f5f2fa95d4
No known key found for this signature in database
6 changed files with 270 additions and 4 deletions

View file

@ -35,6 +35,26 @@
}
];
};
nixosConfigurations."hypermac" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./base/hypermac
home-manager.nixosModules.home-manager {
home-manager.extraSpecialArgs = {
inherit inputs;
vars = {
isNixOS = true;
class = "desktop";
user = "maya";
useSyncthing = true;
};
};
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.maya = ./home;
}];
};
#other confs go here, cant be assed rn
homeConfigurations.generic = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs { system = "x86_64-linux"; overlays = [inputs.nixgl.overlay]; };