the return of hypermac
This commit is contained in:
parent
d11bfc67ec
commit
f5f2fa95d4
6 changed files with 270 additions and 4 deletions
20
flake.nix
20
flake.nix
|
|
@ -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]; };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue