enable tailscale add virt supports

This commit is contained in:
arouzing 2023-02-04 19:22:25 -05:00
parent 0ba4d8ac58
commit 7ce263ca99
No known key found for this signature in database
GPG key ID: 59472C1F0709FBA9

View file

@ -1,9 +1,10 @@
{ config, pkgs, lib, ... }:
{ modulesPath, config, pkgs, lib, ... }:
{
imports =
[ # Include the results of the hardware scan.
# ../.modules/base/hardware.nix
(modulesPath + "/profiles/qemu-guest.nix")
../.modules/services/docker.nix
../.modules/users/arouzing.nix
../.modules/users/speccon18.nix
@ -14,7 +15,6 @@
environment.systemPackages = with pkgs; [
htop
vim
# sleep
tailscale
];
@ -24,7 +24,7 @@
# networkmanager.enable = true;
};
# services.tailscale.enable = true;
services.tailscale.enable = true;
time.timeZone = "America/New_York";
@ -37,4 +37,9 @@
## main services
system.stateVersion = "22.11";
### testing ###
boot.initrd.availableKernelModules =
[ "ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk" ];
}