2022-03-23 13:10:18 +01:00
|
|
|
|
{
|
|
|
|
|
pkgs,
|
2023-04-19 01:01:07 +02:00
|
|
|
|
inputs,
|
2022-03-23 13:10:18 +01:00
|
|
|
|
...
|
2022-03-31 16:24:43 +02:00
|
|
|
|
}: {
|
2023-04-19 01:01:07 +02:00
|
|
|
|
imports = [
|
|
|
|
|
inputs.nixos-hardware.nixosModules.common-cpu-intel
|
|
|
|
|
inputs.nixos-hardware.nixosModules.common-gpu-nvidia
|
|
|
|
|
inputs.nixos-hardware.nixosModules.common-pc-laptop
|
|
|
|
|
inputs.nixos-hardware.nixosModules.common-pc-laptop-ssd
|
|
|
|
|
inputs.nixos-hardware.nixosModules.common-pc-laptop-acpi_call
|
|
|
|
|
inputs.self.nixosModules.homeManagerConfig
|
|
|
|
|
inputs.custom-udev-rules.nixosModule
|
2024-01-15 15:59:54 +01:00
|
|
|
|
../../hardware/thinkpad-p1-gen3.nix
|
|
|
|
|
../../modules/light-actkbd.nix
|
|
|
|
|
../../modules/nvidia-fixed.nix
|
2023-04-19 01:01:07 +02:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
config = {
|
|
|
|
|
boot = {
|
|
|
|
|
# Use the systemd-boot EFI boot loader.
|
|
|
|
|
loader = {
|
|
|
|
|
systemd-boot.enable = true;
|
|
|
|
|
efi.canTouchEfiVariables = true;
|
|
|
|
|
};
|
2021-05-28 00:15:51 +02:00
|
|
|
|
};
|
2021-05-19 23:08:18 +02:00
|
|
|
|
|
2023-04-19 01:01:07 +02:00
|
|
|
|
networking = {
|
|
|
|
|
hostName = "helix-texta";
|
|
|
|
|
networkmanager.enable = true;
|
|
|
|
|
};
|
2021-05-25 15:02:16 +02:00
|
|
|
|
|
2023-04-19 01:01:07 +02:00
|
|
|
|
nixpkgs.overlays = [
|
|
|
|
|
inputs.nixpkgs-wayland.overlay
|
|
|
|
|
];
|
2022-12-01 18:08:49 +01:00
|
|
|
|
|
2023-04-19 01:01:07 +02:00
|
|
|
|
system.fsPackages = [pkgs.sshfs];
|
2021-06-05 12:07:55 +02:00
|
|
|
|
|
2023-04-19 01:01:07 +02:00
|
|
|
|
settings.minimalGnome.enable = true;
|
|
|
|
|
settings.batteryStuff.enable = true;
|
2021-08-16 20:09:08 +02:00
|
|
|
|
|
2023-04-19 01:01:07 +02:00
|
|
|
|
# Pipewire for my wayland
|
|
|
|
|
sound.enable = false;
|
|
|
|
|
security.rtkit.enable = true;
|
|
|
|
|
services.pipewire = {
|
|
|
|
|
enable = true;
|
|
|
|
|
alsa.enable = true;
|
|
|
|
|
alsa.support32Bit = true;
|
|
|
|
|
pulse.enable = true;
|
|
|
|
|
jack.enable = true;
|
|
|
|
|
|
|
|
|
|
# config.pipewire-pulse."stream.properties" = {
|
|
|
|
|
# "channelmix.upmix" = true;
|
|
|
|
|
# "channelmix.lfe-cutoff" = 150;
|
|
|
|
|
# };
|
|
|
|
|
|
|
|
|
|
# config.pipewire = {"default.clock.allowed-rates" = [48000 44100];};
|
|
|
|
|
|
|
|
|
|
# media-session.config.media-session = lib.recursiveUpdate options.services.pipewire.media-session.config.media-session.default {
|
|
|
|
|
# "session.modules".default = options.services.pipewire.media-session.config.media-session.default."session.modules".default ++ ["default-profile"];
|
|
|
|
|
# };
|
|
|
|
|
|
|
|
|
|
# media-session.config.alsa-monitor = {
|
|
|
|
|
# rules = [
|
|
|
|
|
# {
|
|
|
|
|
# matches = [
|
|
|
|
|
# {
|
|
|
|
|
# "node.name" = "alsa_output.usb-Focusrite_Scarlett_Solo_USB_Y7ENM550A6399B-00.pro-output-0";
|
|
|
|
|
# }
|
|
|
|
|
# ];
|
|
|
|
|
# actions = {
|
|
|
|
|
# update-props = {
|
|
|
|
|
# #"audio.rate" = 96000;
|
|
|
|
|
# "api.alsa.headroom" = 1024;
|
|
|
|
|
# };
|
|
|
|
|
# };
|
|
|
|
|
# }
|
|
|
|
|
# ];
|
|
|
|
|
# };
|
2021-06-05 16:01:32 +02:00
|
|
|
|
};
|
2023-04-19 01:01:07 +02:00
|
|
|
|
xdg.portal = {
|
2021-07-09 10:46:19 +02:00
|
|
|
|
enable = true;
|
2024-01-22 21:09:05 +01:00
|
|
|
|
config.common.default = "*";
|
2023-08-27 13:52:13 +02:00
|
|
|
|
extraPortals = with pkgs; [xdg-desktop-portal-gtk];
|
2021-07-09 10:46:19 +02:00
|
|
|
|
};
|
2021-05-28 00:15:51 +02:00
|
|
|
|
|
2023-04-19 01:01:07 +02:00
|
|
|
|
services.udev.customRules = [
|
|
|
|
|
# Rename the Scarlett Solo using udev
|
|
|
|
|
{
|
|
|
|
|
name = "85-scarlett-solo";
|
|
|
|
|
rules = ''
|
|
|
|
|
SUBSYSTEM=="usb", ENV{ID_MODEL_ID}=="8211", ENV{ID_VENDOR_ID}=="1235", TAG+="systemd", SYMLINK+="scarlett_solo"
|
|
|
|
|
'';
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
name = "85-yubikey";
|
|
|
|
|
rules = ''
|
|
|
|
|
SUBSYSTEM=="usb", ENV{ID_MODEL_ID}=="0407", ENV{ID_VENDOR_ID}=="1050", TAG+="systemd", SYMLINK+="yubikey"
|
|
|
|
|
'';
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
security.pam = {
|
|
|
|
|
yubico = {
|
|
|
|
|
control = "sufficient";
|
|
|
|
|
mode = "challenge-response";
|
|
|
|
|
debug = false;
|
|
|
|
|
};
|
|
|
|
|
# TODO: Update once my PR lands
|
|
|
|
|
services.login.yubicoAuth = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
users.mutableUsers = false;
|
|
|
|
|
users.custom.malte.enable = true;
|
|
|
|
|
|
|
|
|
|
# Use some fonts
|
|
|
|
|
fonts = {
|
2023-08-27 13:52:13 +02:00
|
|
|
|
enableDefaultPackages = true;
|
|
|
|
|
packages = with pkgs; [hackNerdLigatures noto-fonts noto-fonts-cjk joypixels];
|
2023-04-19 01:01:07 +02:00
|
|
|
|
fontconfig = {
|
|
|
|
|
enable = true;
|
|
|
|
|
defaultFonts.monospace = ["Hack NF FC Ligatured"];
|
|
|
|
|
};
|
|
|
|
|
};
|
2021-05-19 23:08:18 +02:00
|
|
|
|
|
2023-04-19 01:01:07 +02:00
|
|
|
|
# Configure GPG with SSH support and enable the yubikey
|
|
|
|
|
programs.gnupg.agent = {
|
2021-07-04 12:20:47 +02:00
|
|
|
|
enable = true;
|
2023-04-19 01:01:07 +02:00
|
|
|
|
enableSSHSupport = true;
|
2024-03-24 14:16:25 +01:00
|
|
|
|
pinentryPackage = pkgs.pinentry-qt;
|
2021-07-04 12:20:47 +02:00
|
|
|
|
};
|
|
|
|
|
|
2023-04-19 01:01:07 +02:00
|
|
|
|
# TODO: This defaults to true, why does it not work with virtualisation.containers.enable?
|
|
|
|
|
boot.enableContainers = false;
|
|
|
|
|
virtualisation = {
|
|
|
|
|
podman = {
|
|
|
|
|
enable = true;
|
|
|
|
|
# Create a `docker` alias for podman, to use it as a drop-in replacement
|
|
|
|
|
dockerCompat = true;
|
|
|
|
|
dockerSocket.enable = true;
|
|
|
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
|
|
|
};
|
|
|
|
|
};
|
2021-07-15 14:12:24 +02:00
|
|
|
|
|
2024-01-09 20:09:16 +01:00
|
|
|
|
programs.steam = {
|
|
|
|
|
enable = true;
|
|
|
|
|
remotePlay.openFirewall = true;
|
|
|
|
|
};
|
|
|
|
|
|
2023-04-19 01:01:07 +02:00
|
|
|
|
nixpkgs.config.packageOverrides = pkgs: {
|
|
|
|
|
steam = pkgs.steam.override {extraPkgs = pkgs: [pkgs.openssl];};
|
|
|
|
|
};
|
2021-05-28 00:15:51 +02:00
|
|
|
|
|
2023-04-19 01:01:07 +02:00
|
|
|
|
services.udev.packages = with pkgs; [yubikey-personalization chrysalis];
|
|
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
thunderbolt
|
|
|
|
|
qt5.qtwayland
|
|
|
|
|
chrysalis
|
|
|
|
|
];
|
|
|
|
|
# TODO: Remove when firefox' RDD is fixed (allows libva)
|
|
|
|
|
environment.variables."MOZ_DISABLE_RDD_SANDBOX" = "1";
|
|
|
|
|
|
|
|
|
|
services.fwupd.enable = true;
|
|
|
|
|
services.devmon.enable = true;
|
|
|
|
|
|
2024-01-15 15:59:54 +01:00
|
|
|
|
sops.defaultSopsFile = ../../secrets/hosts/helix-texta/secrets.yaml;
|
2023-04-19 01:01:07 +02:00
|
|
|
|
sops.age.sshKeyPaths = ["/etc/ssh/ssh_host_ed25519_key"];
|
|
|
|
|
|
|
|
|
|
# This value determines the NixOS release from which the default
|
|
|
|
|
# settings for stateful data, like file locations and database versions
|
|
|
|
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
|
|
|
|
# this value at the release version of the first install of this system.
|
|
|
|
|
# Before changing this value read the documentation for this option
|
|
|
|
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
|
|
|
|
system.stateVersion = "20.09"; # Did you read the comment?
|
|
|
|
|
};
|
2021-05-19 23:08:18 +02:00
|
|
|
|
}
|