1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-01-31 07:03:36 +00:00
This commit is contained in:
Rae 5e 2025-01-01 21:01:45 -05:00
parent ba7685dc06
commit da129c4dc0
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE

View file

@ -21,23 +21,22 @@
}; };
outputs = { self, nixpkgs, home-manager, ... }@inputs: { outputs = { self, nixpkgs, home-manager, ... }@inputs: {
nixosConfigurations = { nixosConfigurations =
ioides = nixpkgs.lib.nixosSystem { let
system = hostname: {
name = hostname;
value = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
modules = [ modules = [
./hosts/ioides/configuration.nix ./hosts/${hostname}/configuration.nix
];
};
qemu = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./hosts/qemu/configuration.nix
]; ];
}; };
}; };
in builtins.listToAttrs [
(system "ioides")
(system "qemu")
];
homeConfigurations.rae = home-manager.lib.homeManagerConfiguration { homeConfigurations.rae = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux; pkgs = nixpkgs.legacyPackages.x86_64-linux;