Skip to content
This repository was archived by the owner on Apr 24, 2026. It is now read-only.

Commit d58c513

Browse files
committed
Add a test configuration
1 parent 3095b54 commit d58c513

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

test.nix

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Do not modify this file! It was generated by ‘nixos-generate-config’
2+
# and may be overwritten by future invocations. Please make changes
3+
# to /etc/nixos/configuration.nix instead.
4+
{ config, lib, pkgs, modulesPath, ... }:
5+
6+
{
7+
imports =
8+
[
9+
./common.nix
10+
(modulesPath + "/installer/scan/not-detected.nix")
11+
];
12+
13+
networking.hostName = "test"; # Define your hostname.
14+
boot.plymouth.theme = "acidburn";
15+
16+
boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" ];
17+
boot.initrd.kernelModules = [ ];
18+
boot.kernelModules = [ "kvm-intel" ];
19+
boot.extraModulePackages = [ ];
20+
21+
fileSystems."/" =
22+
{ device = "/dev/disk/by-uuid/44074cb9-5ef1-4914-8789-1bd430611421";
23+
fsType = "ext4";
24+
};
25+
26+
fileSystems."/boot" =
27+
{ device = "/dev/disk/by-uuid/60B6-6A04";
28+
fsType = "vfat";
29+
options = [ "fmask=0077" "dmask=0077" ];
30+
};
31+
32+
swapDevices = [ ];
33+
}

0 commit comments

Comments
 (0)