Full rewrite

This commit is contained in:
ItsDrike 2024-03-21 21:47:25 +01:00
parent 8053e16a12
commit 8dc12c0ae7
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
29 changed files with 294 additions and 74 deletions

View file

@ -1,4 +1,4 @@
{ lib, pkgs, ...}:
{ lib, pkgs, ... }:
{
imports = [ ./hardware-configuration.nix ];
@ -13,10 +13,18 @@
udisks2.enable = true;
};
networking.hostName = "vboxnix";
# NixOS release from which this machine was first installed.
# (for stateful data, like file locations and db versions)
# Leave this alone!
system.stateVersion = lib.mkForce "23.11";
myOptions = {
system = {
hostname = "vboxnix";
username = "itsdrike";
};
device = {
cpu.type = "vm-amd";
};
};
}