ops/nixos: make references to nixpkgs modules use relative paths
This commit is contained in:
parent
11a7fefe1c
commit
e0969055f6
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
|||
let
|
||||
inherit (depot.ops) secrets;
|
||||
in {
|
||||
imports = [ <nixpkgs/nixos/modules/profiles/qemu-guest.nix> ];
|
||||
imports = [ ../../../third_party/nixpkgs/nixos/modules/profiles/qemu-guest.nix ];
|
||||
boot.kernelModules = [ "tcp_bbr" ];
|
||||
boot.kernel.sysctl = {
|
||||
"net.ipv6.conf.default.accept_ra" = 1;
|
||||
|
|
|
@ -7,7 +7,7 @@ let
|
|||
inherit (depot.ops) secrets;
|
||||
in {
|
||||
imports =
|
||||
[ <nixpkgs/nixos/modules/installer/scan/not-detected.nix> ../lib/client.nix ../lib/whitby-distributed.nix ];
|
||||
[ ../../../third_party/nixpkgs/nixos/modules/installer/scan/not-detected.nix ../lib/client.nix ../lib/whitby-distributed.nix ];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" ];
|
||||
boot.kernelModules = lib.mkAfter [ "kvm-intel" ];
|
||||
|
|
Loading…
Reference in a new issue