Add initial support for 'bomberman', my Oracle VM
This commit is contained in:
parent
b0b291dd04
commit
9046a92e89
5 changed files with 107 additions and 2 deletions
10
flake.nix
10
flake.nix
|
@ -35,18 +35,24 @@
|
|||
in {
|
||||
# nixos-rebuild switch --flake .#hostname
|
||||
nixosConfigurations = {
|
||||
# PCs and Laptops
|
||||
firefly = mkNixos [ ./hosts/firefly/system ];
|
||||
cyberspark = mkNixos [ ./hosts/cyberspark/system ];
|
||||
shuttleworth = mkNixos [ ./hosts/shuttleworth/system ];
|
||||
lacros = mkNixos [ ./hosts/lacros/system ];
|
||||
|
||||
# Servers
|
||||
cyberspark = mkNixos [ ./hosts/cyberspark/system ];
|
||||
bomberman = mkNixos [ ./hosts/bomberman/system ];
|
||||
};
|
||||
|
||||
# home-manager switch --flake .#username@hostname
|
||||
homeConfigurations = {
|
||||
"jimbo@firefly" = mkHome [ ./hosts/firefly/home ] nixpkgs.legacyPackages.x86_64-linux;
|
||||
"jimbo@cyberspark" = mkHome [ ./hosts/cyberspark/home ] nixpkgs.legacyPackages.x86_64-linux;
|
||||
"jimbo@shuttleworth" = mkHome [ ./hosts/shuttleworth/home ] nixpkgs.legacyPackages.aarch64-linux;
|
||||
"jimbo@lacros" = mkHome [ ./hosts/lacros/home ] nixpkgs.legacyPackages.x86_64-linux;
|
||||
|
||||
"jimbo@cyberspark" = mkHome [ ./hosts/cyberspark/home ] nixpkgs.legacyPackages.x86_64-linux;
|
||||
"jimbo@bomberman" = mkHome [ ./hosts/bomberman/home ] nixpkgs.legacyPackages.aarch64-linux;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue