blob: de93a4f04fc862fe9843d37ed93e24870f2e5bb3 (
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
27
28
29
30
31
32
33
34
35
36
37
38
 | { lib, inputs, pkgs, ... }:
{
  imports = [
    ./hardware-configuration.nix
    inputs.home-manager.nixosModules.default
  ] ++ (map (path: ../../modules/${path}) [
    "global.nix"
    "compromyse.nix"
    "desktop.nix"
    "login.nix"
    "fonts.nix"
    "bluetooth.nix"
    "audio.nix"
    # "virtualization.nix"
    # "nvidia.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";
  nixpkgs.config.allowUnfree = true;
  nixpkgs.config.allowUnfreePredicate = _: true;
  hardware.opengl.enable = true;
  fileSystems."/data" = {
    device = "/dev/sda";
    fsType = "ext4";
  };
  networking.hostName = "x";
  home-manager.users.compromyse = import ./home.nix;
}
 |