forked from stitchy/dotfiles
learning time
This commit is contained in:
parent
01e4142cea
commit
9324add63e
1 changed files with 70 additions and 72 deletions
|
@ -1,16 +1,5 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
networking.hostName = "malachite";
|
||||
|
||||
time.timeZone = "America/Los_Angeles";
|
||||
|
||||
let
|
||||
{ config, pkgs, ... }
|
||||
let
|
||||
passthrough = pkgs.writeShellScript "pasthrough.sh" ''
|
||||
#/usr/bin/env bash
|
||||
|
||||
|
@ -73,13 +62,22 @@
|
|||
fi
|
||||
|
||||
'';
|
||||
in {
|
||||
in {
|
||||
imports =
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
virtualization.libvirtd.hooks.qemu = {
|
||||
passthrough = "${passthrough}";
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
|
||||
networking.hostName = "malachite";
|
||||
|
||||
time.timeZone = "America/Los_Angeles";
|
||||
|
||||
# Read the Docs before Changing
|
||||
system.stateVersion = "23.05"; # Did you read the comment?
|
||||
}
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue