Update example config

This commit is contained in:
Davíð Steinn Geirsson 2026-02-16 17:07:17 +00:00
parent 7bd7c3e3f8
commit b0b0809577
2 changed files with 3 additions and 7 deletions

View file

@ -89,12 +89,7 @@
};
};
};
guestConfig = commonGuestConfig // {
fileSystems."/home/user" = {
device = "home";
fsType = "virtiofs";
};
};
guestConfig = commonGuestConfig;
guestPrograms = commonGuestPrograms;
}
{
@ -105,6 +100,7 @@
cpus = 2;
gpu = false;
sound = false;
sharedHome = false;
network = {
nameservers = [ "8.8.8.8" ];
interfaces.testnet = {

View file

@ -7,7 +7,7 @@
outputs =
inputs@{ self, nixpkgs, ... }:
{
nixosConfigurations.stofa = nixpkgs.lib.nixosSystem {
nixosConfigurations.default = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [ ./configuration.nix ];