nix-infra/hosts/tabby/default.nix

31 lines
890 B
Nix

# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ pkgs, lib, ... }: {
imports = [
../../profiles/desktop
./hardware-configuration.nix
];
cherrykitten.impermanence.enable = true;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.wireless.iwd.enable = true;
# Enable CUPS to print documents.
services.printing.enable = true;
services.fwupd.enable = true;
services.xserver.xkb.layout = lib.mkForce "us";
home-manager.users.sammy.wayland.windowManager.sway.config.input."*".xkb_layout = lib.mkForce "us";
users.users.sammy.packages = with pkgs; [
picard
discord
];
system.stateVersion = "24.05"; # Did you read the comment?
}