learning time

This commit is contained in:
stitchy 2024-03-14 06:13:52 +00:00
parent 01e4142cea
commit 9324add63e
Signed by: stitchy
SSH key fingerprint: SHA256:yz2SoxdnY67tfY5Jzb0f2v8f5W3o/IF359kbcquWip8

View file

@ -1,15 +1,4 @@
{ config, pkgs, ... }: { config, pkgs, ... }
{
imports =
[
./hardware-configuration.nix
];
networking.hostName = "malachite";
time.timeZone = "America/Los_Angeles";
let let
passthrough = pkgs.writeShellScript "pasthrough.sh" '' passthrough = pkgs.writeShellScript "pasthrough.sh" ''
#/usr/bin/env bash #/usr/bin/env bash
@ -74,12 +63,21 @@
''; '';
in { in {
imports =
[
./hardware-configuration.nix
];
virtualization.libvirtd.hooks.qemu = { virtualization.libvirtd.hooks.qemu = {
passthrough = "${passthrough}"; passthrough = "${passthrough}";
}; };
};
networking.hostName = "malachite";
time.timeZone = "America/Los_Angeles";
# Read the Docs before Changing # Read the Docs before Changing
system.stateVersion = "23.05"; # Did you read the comment? system.stateVersion = "23.05"; # Did you read the comment?
}
};