Epimethus: stuff

This commit is contained in:
blahai 2024-11-13 21:07:26 +02:00
parent ccfd346b27
commit 4fddc56e19
Signed by: blahai
SSH key fingerprint: SHA256:ZfCryi+V64yG+vC1ZIIsqgvBCmA31tTi7RJ6M8CvpRc

View file

@ -1,10 +1,12 @@
{ pkgs, modulesPath, ... }: { { pkgs, lib, modulesPath, config, ... }: {
imports = [ imports = [ "${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix" ];
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
];
boot.kernelPackages = pkgs.linuxPackages_6_11; boot = {
kernelPackages = pkgs.linuxPackages_6_6;
kernelParams = lib.mkAfter [ "noquiet" "toram" ];
enableContainers = false;
};
nixpkgs.hostPlatform = "x86_64-linux"; nixpkgs.hostPlatform = "x86_64-linux";
@ -14,15 +16,46 @@
parted parted
git git
nixd nixd
pciutils
]; ];
documentation = {
enable = lib.mkDefault false;
doc.enable = lib.mkDefault false;
info.enable = lib.mkDefault false;
};
networking = { networking = {
networkmanager.enable = true; networkmanager.enable = true;
wireless.enable = true; wireless.enable = lib.mkForce false;
};
services = {
logrotate.enable = false;
udisks2.enable = false;
};
programs = {
less.lessopen = null;
command-not-found.enable = false;
};
environment = {
stub-ld.enable = lib.mkForce false;
defaultPackages = [ ];
};
xdg = {
autostart.enable = false;
icons.enable = false;
mime.enable = false;
sounds.enable = false;
}; };
nix = { nix = {
package = pkgs.lix; package = pkgs.lix;
nixPath = [ "nixpkgs=${config.nix.registry.nixpkgs.to.path}" ];
channel.enable = false;
settings = { settings = {
experimental-features = [ "nix-command" "flakes" "auto-allocate-uids" ]; experimental-features = [ "nix-command" "flakes" "auto-allocate-uids" ];
max-jobs = "auto"; max-jobs = "auto";
@ -31,7 +64,26 @@
keep-going = true; keep-going = true;
warn-dirty = false; warn-dirty = false;
use-xdg-base-directories = true; use-xdg-base-directories = true;
substituters = [
"https://nix-community.cachix.org"
"https://nixpkgs-unfree.cachix.org"
"https://hyprland.cachix.org/"
"https://anyrun.cachix.org"
"https://wezterm.cachix.org"
"https://hydra.nixos.org/"
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"nixpkgs-unfree.cachix.org-1:hqvoInulhbV4nJ9yJOEr+4wxhDV4xq2d1DK7S6Nj6rs="
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
"anyrun.cachix.org-1:pqBobmOjI7nKlsUMV25u9QHa9btJK65/C8vnO3p346s="
"wezterm.cachix.org-1:kAbhjYUC9qvblTE+s7S+kl5XM1zVa4skO+E/1IDWdH0="
"hydra.nixos.org-1:CNHJZBh9K4tP3EKF6FkkgeVYsS3ohTl+oS0Qa8bezVs="
];
}; };
}; };
hardware.enableRedistributableFirmware = true;
} }