Merge remote-tracking branch 'refs/remotes/origin/main'

This commit is contained in:
beanigen 2025-03-03 20:46:20 +08:00
commit fae1feb448
No known key found for this signature in database
8 changed files with 277 additions and 5 deletions

View file

@ -43,6 +43,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 = "lowspec";
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]; };