summaryrefslogtreecommitdiffstats
path: root/hosts/jontop/default.nix
blob: c9166965600b85d5a83d790077797546760cc631 (plain) (blame)
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
{ inputs, config, lib, modulesPath, pkgs, ... }:

{
    imports = [
        ./hardware.nix
        ../../modules/hardware/bluetooth.nix
    ];
    
    #Boot options
    boot = {
        loader = {
            systemd-boot = {
                enable = true;
                configurationLimit = 8;
            };
            efi.canTouchEfiVariables = true;
            timeout = 5;
        };
        kernelPackages = pkgs.linuxPackages_latest;
    };

    
    hardware.opengl = {
      enable = true;
    };
    
    programs.light.enable = true;
    
    awesome.enable = true;
}