Rename host bennu to pinwheel

This commit is contained in:
Alexander Heldt
2023-07-21 21:32:10 +02:00
parent d5571ca03c
commit 0345b4f609
6 changed files with 7 additions and 7 deletions

View File

@@ -11,16 +11,16 @@
outputs = { self, nixpkgs2305, nixpkgs2211, nixos-hardware, home-manager, ... }: {
nixosConfigurations = {
bennu = nixpkgs2305.lib.nixosSystem {
pinwheel = nixpkgs2305.lib.nixosSystem {
system = "x86_64-linux";
modules = [
nixos-hardware.nixosModules.lenovo-thinkpad-x1-10th-gen
./hosts/bennu/configuration.nix
./hosts/pinwheel/configuration.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.alex = import ./hosts/bennu/home.nix;
home-manager.users.alex = import ./hosts/pinwheel/home.nix;
}
];
};