nix-config/hosts/workstations/sparrow/default.nix

29 lines
432 B
Nix
Raw Normal View History

2024-11-10 17:54:08 -05:00
{ pkgs, ... }:
{
imports = [
./hardware.nix
];
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
networking = {
hostName = "sparrow";
networkmanager.enable = true;
};
services = {
xserver.xkb.options = "ctrl:swapcaps";
libinput.enable = true;
};
console.useXkbConfig = true;
environment.systemPackages = with pkgs; [
acpi
qbittorrent
];
}