{ pkgs, lib, ... }: let sshKeys = import ../../crypto/ssh-keys.nix; in { imports = [ ./hardware-configuration.nix ../../common/base.nix ../../common/full-install.nix ../../common/allow-unfree.nix ../../common/locales/en.nix ../../common/locales/en-keymap.nix ../../common/hardware/intel-cpu.nix ../../common/hardware/nvidia-gpu.nix ../../common/hardware/ssd.nix ../../common/hardware/btrfs.nix ../../common/hardware/latest-kernel.nix ../../common/components/de/plasma6.nix # ../../common/components/de/hyprland.nix ../../common/services/syncthing.nix ../../common/services/adguardhome.nix ../../common/programs/steam.nix ../../home/tasia-but-old-username.nix ]; networking = { hostName = "theseus"; }; users.users.user.openssh.authorizedKeys.keys = [ sshKeys.tasia.cave ]; services.btrfs.autoScrub.fileSystems = lib.mkForce ["/" "/data"]; services.syncthing = { dataDir = lib.mkForce "/home/user/Sync/Phone/"; configDir = lib.mkForce "/home/user/sync/configuration/"; }; environment.systemPackages = with pkgs; [ # ]; # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion system.stateVersion = "23.05"; }