35 lines
725 B
Nix
35 lines
725 B
Nix
{ config, pkgs, ... }: {
|
|
imports = [
|
|
../profiles/laptop.nix
|
|
../modules/systemd-boot-efi.nix
|
|
../modules/intel.nix
|
|
../modules/docker.nix
|
|
../modules/network-manager.nix
|
|
../modules/bluetooth.nix
|
|
../modules/pulseaudio.nix
|
|
../modules/de/sway.nix
|
|
../modules/users/daniel.nix
|
|
../modules/users/valerie.nix
|
|
];
|
|
|
|
networking = {
|
|
hostName = "third.lyte.dev";
|
|
firewall.enable = false;
|
|
networkmanager.wifi.powersave = true;
|
|
};
|
|
|
|
services.fwupd = {
|
|
enable = true;
|
|
};
|
|
|
|
console.useXkbConfig = true;
|
|
services.xserver.xkbOptions = "ctrl:nocaps";
|
|
# TODO: setup caps-lock as Control/Escape?
|
|
# console.font = "TER16x32";
|
|
|
|
# services.upower = {
|
|
# enable = true;
|
|
# criticalPowerAction = "Hibernate";
|
|
# };
|
|
}
|