summaryrefslogblamecommitdiffstats
path: root/hosts/jontop/default.nix
blob: 4e532793a511026616cb18152e6e401104fa48e6 (plain) (tree)































                                                   
{ 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;
    mullvad-vpn.enable = true;
}