add modules
This commit is contained in:
parent
e913bd96d5
commit
23aa68d0fa
12 changed files with 4 additions and 3 deletions
|
@ -2,6 +2,7 @@
|
|||
imports = [
|
||||
inputs.home-manager.nixosModules.home-manager
|
||||
./users
|
||||
./modules
|
||||
];
|
||||
|
||||
home-manager = {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
_: {
|
||||
networking.useDHCP = true;
|
||||
{ lib, ... }: {
|
||||
networking.useDHCP = lib.mkDefault true;
|
||||
|
||||
# Enable qemu guest agent
|
||||
services.qemuGuest.enable = true;
|
|
@ -83,7 +83,7 @@
|
|||
nixosConfigurations."bastion.olympus" = lib.nixosSystem {
|
||||
inherit system pkgs;
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [ ./common ./hosts/olympus/bastion ];
|
||||
modules = [ ./common ./common/generic-vm.nix ./hosts/olympus/bastion ];
|
||||
};
|
||||
|
||||
deploy = {
|
||||
|
|
Loading…
Add table
Reference in a new issue