80 lines
1.6 KiB
Nix
80 lines
1.6 KiB
Nix
{ config, lib, pkgs, aspect, inputs, hosts, ... }:
|
|
|
|
let
|
|
inherit (inputs.self.packages.${pkgs.system}) bcachefs-tools linux-bcachefs;
|
|
in
|
|
{
|
|
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./extras/cachix-upload-daemon.nix
|
|
./extras/custom-kernel.nix
|
|
./extras/ddcci-backlight.nix
|
|
./extras/fbi-downloader.nix
|
|
./extras/ipfs-cluster.nix
|
|
(import ../../users "desktop").users.max
|
|
inputs.agenix.nixosModules.age
|
|
]
|
|
++ ( with inputs.nixos-hardware.nixosModules; [
|
|
common-cpu-amd
|
|
])
|
|
++ aspect.sets.desktop
|
|
++ (with aspect.modules; [
|
|
persistence
|
|
nix-builder
|
|
games
|
|
lidarr
|
|
prowlarr
|
|
]);
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
boot.kernelPackages = lib.mkForce (pkgs.linuxPackagesFor (linux-bcachefs.override {
|
|
ignoreConfigErrors = true;
|
|
}));
|
|
|
|
nixpkgs.overlays = lib.singleton (_: _: {
|
|
inherit bcachefs-tools;
|
|
});
|
|
|
|
networking.hostName = "TITAN";
|
|
|
|
time.timeZone = "Europe/Vienna";
|
|
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
console = {
|
|
font = "";
|
|
keyMap = "de";
|
|
};
|
|
|
|
services.xserver.layout = "de";
|
|
|
|
services.xserver.libinput.enable = true;
|
|
|
|
services.openssh.enable = true;
|
|
|
|
system.stateVersion = "22.05";
|
|
|
|
services.fstrim.enable = true;
|
|
|
|
users.mutableUsers = false;
|
|
|
|
virtualisation.podman.enable = true;
|
|
|
|
services.xserver.displayManager.gdm.autoSuspend = false;
|
|
|
|
boot.supportedFilesystems = [ "bcachefs" ];
|
|
|
|
boot.tmpOnTmpfs = true;
|
|
boot.tmpOnTmpfsSize = "75%";
|
|
|
|
networking.nat = {
|
|
enable = true;
|
|
externalInterface = "enp24s0";
|
|
internalIPs = [
|
|
"10.100.3.0/24"
|
|
];
|
|
};
|
|
}
|
|
|