system/nixos/hosts/asus-gl553vd/default.nix

77 lines
1.6 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ config, pkgs, ... }:
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
../../shared/common.nix
../../shared/sound.nix
../../shared/window-manager.nix
../../shared/fonts.nix
../../shared/gnupg.nix
../../shared/garbage-collector.nix
../../shared/networking.secret.nix
];
# Use latest kernel
boot.kernelPackages = pkgs.linuxPackages_6_1;
# Use the systemd-boot EFI boot loader.
boot.loader = {
systemd-boot = {
enable = true;
configurationLimit = 10;
};
efi.canTouchEfiVariables = true;
};
networking = {
hostName = "laptop"; # Define your hostname.
useDHCP = false;
interfaces = {
enp3s0.useDHCP = true;
wlp2s0.useDHCP = true;
};
networkmanager.enable = true;
};
# enable bluetooth
hardware.bluetooth.enable = true;
# configure mouse and touchpad
services.xserver.libinput = {
enable = true;
touchpad = {
accelSpeed = "0.5";
disableWhileTyping = true;
};
};
services.logind.extraConfig = ''
# dont shutdown when power button is short-pressed
HandlePowerKey=ignore
'';
services.openssh.enable = true;
# Enable the Docker
virtualisation.docker.enable = true;
# Additional nix configs
local.nix.enableMyRegistry = true;
# Wireguard client
age.secrets.wireguard-asus-gl553vd-private = {
file = ../../../secrets/wireguard-asus-gl553vd-private.age;
mode = "0400";
};
local.wireguard = {
enable = true;
ip = "10.20.30.4/24";
privateKeyFile = config.age.secrets.wireguard-asus-gl553vd-private.path;
};
}