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

25 lines
394 B
Nix

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