blob: 5af5c587c6c0d51bc954fc6c7dbf99c1ff1e7596 (
plain)
| 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
 | { lib, inputs, ... }:
{
  imports = [
    ./hardware-configuration.nix
    inputs.home-manager.nixosModules.default
  ] ++ (map (path: ../../modules/${path}) [
    "global.nix"
    "compromyse.nix"
  ]);
  boot.loader.systemd-boot.enable = true;
  boot.loader.efi.canTouchEfiVariables = true;
  boot.loader.efi.efiSysMountPoint = "/boot/efi";
  boot.extraModprobeConfig = "options kvm_intel nested=1";
  fileSystems."/data" = {
    device = "/dev/sda";
    fsType = "ext4";
  };
  networking.hostName = "z";
  home-manager.users.compromyse = import ./home.nix;
}
 |