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,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?
|
||||||
}
|
|
||||||
|
|
||||||
|
};
|
||||||
|
|
Loading…
Reference in a new issue