nixos-config/hosts/thinkpad/default.nix

102 lines
2.2 KiB
Nix
Raw Normal View History

2022-12-18 17:01:34 +01:00
{ config, pkgs, lib, ... }:
{
2022-12-18 17:07:40 +01:00
imports =
[
./hardware-configuration.nix
2022-12-20 13:16:42 +01:00
./modules/autorandr
2022-12-19 19:30:32 +01:00
../../shared/vim.nix
../../shared/input.nix
../../shared/sops.nix
2022-12-18 17:07:40 +01:00
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "thinkpad";
2022-12-27 18:21:33 +01:00
networking.networkmanager.enable = true;
2022-12-18 17:07:40 +01:00
networking.firewall = {
2022-12-19 19:30:32 +01:00
allowedUDPPorts = [ 51820 ]; # used for wireguard
2022-12-18 17:07:40 +01:00
checkReversePath = false;
};
# Set your time zone.
time.timeZone = "Europe/Berlin";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "Lat2-Terminus16";
useXkbConfig = true; # use xkbOptions in tty.
};
# Enable the X11 windowing system.
services.xserver = {
enable = true;
displayManager = {
lightdm.enable = true;
defaultSession = "none+awesome";
};
2022-12-20 14:42:40 +01:00
windowManager.awesome = {
enable = true;
luaModules = with pkgs.luaPackages; [
luarocks
vicious
];
};
2022-12-18 17:07:40 +01:00
libinput.enable = true;
};
# Enable sound.
sound.enable = true;
hardware.pulseaudio.enable = true;
hardware.bluetooth.enable = true;
# enable polkit
security.polkit.enable = true;
2022-12-19 19:30:32 +01:00
# Baseline of installed packages
2022-12-18 17:07:40 +01:00
environment.systemPackages = with pkgs; [
# essentials
wget
gcc
htop
dig
traceroute
killall
# dev
jdk
maven
];
2022-12-27 18:21:33 +01:00
# control display backlight
2022-12-19 19:30:32 +01:00
programs.light.enable = true;
2022-12-18 17:07:40 +01:00
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
2022-12-19 19:30:32 +01:00
services = {
2022-12-27 18:21:33 +01:00
blueman.enable = true; # bluetooth
devmon.enable = true; # automount stuff
pcscd.enable = true; # yubikey and smartcard handling
2022-12-19 19:30:32 +01:00
printing.enable = true;
fprintd.enable = true; # log in using fingerprint
2022-12-27 18:21:33 +01:00
picom.enable = true; # window transparency
openssh.enable = true; # enabled ssh to have the host keys
2022-12-19 19:30:32 +01:00
};
2022-12-18 17:07:40 +01:00
2022-12-27 18:21:33 +01:00
programs.steam.enable = true; # putting steam in here cause in home manager it doesn't work
2022-12-18 17:07:40 +01:00
virtualisation.libvirtd.enable = true;
2022-12-27 13:23:06 +01:00
virtualisation.spiceUSBRedirection.enable = true;
2022-12-27 18:21:33 +01:00
system.stateVersion = "22.11";
2022-12-18 17:01:34 +01:00
}