system/machines/asus-gl553vd/default.nix

62 lines
1.2 KiB
Nix

{ config, pkgs, lib, ... }:
let
secrets = import ../../secrets.nix;
in
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
../modules/common.nix
../modules/sound.nix
../modules/window_manager.nix
../modules/fonts.nix
../modules/gnupg.nix
../modules/nix.nix
];
# Use latest kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
# Use the systemd-boot EFI boot loader.
boot.loader = {
systemd-boot = {
enable = true;
configurationLimit = 10;
};
efi.canTouchEfiVariables = true;
};
networking = {
hostName = "laptop"; # Define your hostname.
inherit (secrets.networking) extraHosts;
useDHCP = false;
interfaces = {
enp3s0.useDHCP = true;
wlp2s0.useDHCP = true;
};
networkmanager.enable = true;
};
# enable bluetooth
hardware.bluetooth.enable = true;
services.blueman.enable = true;
# configure mouse and touchpad
services.xserver.libinput = {
enable = true;
touchpad = {
accelSpeed = "0.5";
disableWhileTyping = true;
};
};
# Enable the Docker
virtualisation.docker.enable = true;
local.nix.enableMyRegistry = true;
}