NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: more config related chaos [skip ci]

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+6 -3
+5 -2
hosts/lairland/configuration.nix
··· 34 34 imports = 35 35 [ # Include the results of the hardware scan. 36 36 ./hardware-configuration.nix 37 - ../../shared/desktop/base.nix 38 - ../../shared/desktop/kde-plasma.nix 37 + #../../shared/desktop/base.nix 38 + #../../shared/desktop/kde-plasma.nix 39 39 ../../shared/server/ssh.nix 40 40 ../../shared/server/tailscale.nix 41 41 ../../shared/server/devenv.nix ··· 46 46 # Bootloader. 47 47 boot.loader.systemd-boot.enable = true; 48 48 boot.loader.efi.canTouchEfiVariables = true; 49 + # we're not using the TPM at the moment 50 + systemd.tpm2.enable = false; 51 + boot.initrd.systemd.tpm2.enable = false; 49 52 50 53 # Use latest kernel. 51 54 boot.kernelPackages = pkgs.linuxPackages_latest;
+1 -1
shared/nix.nix
··· 1 1 # This is the meta config file for nixpkgs and nix cli itself, including 2 2 # trusted keys for cachix caches and stateVersion for NixOS. 3 3 4 - { config, pkgs, lib, ... }: 4 + { config, pkgs, lib, self, ... }: 5 5 6 6 { 7 7 # Adopted from https://fnordig.de/til/nix/home-manager-allow-unfree.html,