enable tailscale add virt supports
This commit is contained in:
parent
0ba4d8ac58
commit
7ce263ca99
1 changed files with 8 additions and 3 deletions
|
|
@ -1,9 +1,10 @@
|
||||||
{ config, pkgs, lib, ... }:
|
{ modulesPath, config, pkgs, lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
# ../.modules/base/hardware.nix
|
# ../.modules/base/hardware.nix
|
||||||
|
(modulesPath + "/profiles/qemu-guest.nix")
|
||||||
../.modules/services/docker.nix
|
../.modules/services/docker.nix
|
||||||
../.modules/users/arouzing.nix
|
../.modules/users/arouzing.nix
|
||||||
../.modules/users/speccon18.nix
|
../.modules/users/speccon18.nix
|
||||||
|
|
@ -14,7 +15,6 @@
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
htop
|
htop
|
||||||
vim
|
vim
|
||||||
# sleep
|
|
||||||
tailscale
|
tailscale
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
# networkmanager.enable = true;
|
# networkmanager.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
# services.tailscale.enable = true;
|
services.tailscale.enable = true;
|
||||||
|
|
||||||
time.timeZone = "America/New_York";
|
time.timeZone = "America/New_York";
|
||||||
|
|
||||||
|
|
@ -37,4 +37,9 @@
|
||||||
## main services
|
## main services
|
||||||
system.stateVersion = "22.11";
|
system.stateVersion = "22.11";
|
||||||
|
|
||||||
|
### testing ###
|
||||||
|
boot.initrd.availableKernelModules =
|
||||||
|
[ "ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk" ];
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue