From 0a5754541bb01e96021ca7ee74f1256a8ee68bc4 Mon Sep 17 00:00:00 2001 From: tdback Date: Sat, 21 Dec 2024 15:32:13 -0500 Subject: initial commit to self-hosted git --- hosts/sparrow/default.nix | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 hosts/sparrow/default.nix (limited to 'hosts/sparrow/default.nix') diff --git a/hosts/sparrow/default.nix b/hosts/sparrow/default.nix new file mode 100644 index 0000000..824f5df --- /dev/null +++ b/hosts/sparrow/default.nix @@ -0,0 +1,43 @@ +{ inputs, pkgs, ... }: +{ + system.stateVersion = "24.05"; + + imports = [ ./hardware.nix ]; + + home-manager = { + useGlobalPkgs = true; + useUserPackages = true; + users = import "${inputs.self}/users"; + extraSpecialArgs = { + inherit inputs; + headless = false; + }; + }; + + networking = { + hostName = "sparrow"; + networkmanager.enable = true; + }; + + time.timeZone = "America/Detroit"; + + boot = { + loader = { + systemd-boot.enable = true; + efi.canTouchEfiVariables = true; + }; + binfmt.emulatedSystems = [ "aarch64-linux" "riscv64-linux" ]; + }; + + # Since I don't always carry my split keyboard, remap CAPS to left CTRL. + console.useXkbConfig = true; + services = { + xserver.xkb.options = "ctrl:swapcaps"; + libinput.enable = true; + }; + + environment.systemPackages = with pkgs; [ + acpi + unstable.qbittorrent + ]; +} -- cgit v1.2.3