28 lines
432 B
Nix
28 lines
432 B
Nix
{ 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
|
|
];
|
|
}
|