feat(amy): add machine to flake

This commit is contained in:
Ashhhleyyy 2024-06-04 23:26:25 +01:00
parent ba1aff1f79
commit 59c6e429c7
Signed by: ash
GPG key ID: 83B789081A0878FB

View file

@ -113,6 +113,26 @@
];
};
nixosConfigurations.amy = nixpkgs-stable.lib.nixosSystem {
system = "x86_64-linux";
modules = [
overlays-module
./hosts/amy/configuration.nix
./roles/postgres.nix
home-manager-stable.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.ash = { ... }: {
imports = [
fsh.homeModules.fsh
./home/ash
];
};
}
];
};
nixosConfigurations.emira = nixpkgs-unstable.lib.nixosSystem {
system = "x86_64-linux";
modules = [