-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathws3.nix
More file actions
31 lines (25 loc) · 785 Bytes
/
ws3.nix
File metadata and controls
31 lines (25 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[
./common.nix
(modulesPath + "/installer/scan/not-detected.nix")
];
networking.hostName = "ws3"; # Define your hostname.
boot.plymouth.theme = "crashoverride";
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/26ee87ed-600f-4d45-a3c0-d67916e74d35";
fsType = "btrfs";
options = [ "subvol=@" ];
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/A58C-3CCD";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
swapDevices = [ ];
}