···3434 imports =
3535 [ # Include the results of the hardware scan.
3636 ./hardware-configuration.nix
3737- ../../shared/desktop/base.nix
3838- ../../shared/desktop/kde-plasma.nix
3737+ #../../shared/desktop/base.nix
3838+ #../../shared/desktop/kde-plasma.nix
3939 ../../shared/server/ssh.nix
4040 ../../shared/server/tailscale.nix
4141 ../../shared/server/devenv.nix
···4646 # Bootloader.
4747 boot.loader.systemd-boot.enable = true;
4848 boot.loader.efi.canTouchEfiVariables = true;
4949+ # we're not using the TPM at the moment
5050+ systemd.tpm2.enable = false;
5151+ boot.initrd.systemd.tpm2.enable = false;
49525053 # Use latest kernel.
5154 boot.kernelPackages = pkgs.linuxPackages_latest;
+1-1
shared/nix.nix
···11# This is the meta config file for nixpkgs and nix cli itself, including
22# trusted keys for cachix caches and stateVersion for NixOS.
3344-{ config, pkgs, lib, ... }:
44+{ config, pkgs, lib, self, ... }:
5566{
77 # Adopted from https://fnordig.de/til/nix/home-manager-allow-unfree.html,