This commit is contained in:
m3tam3re
2024-11-07 10:50:13 +01:00
parent 5c0ad5d634
commit 6b24828482
14 changed files with 76 additions and 27 deletions

View File

@ -1,6 +1,5 @@
# Common configuration for all hosts
{
config,
pkgs,
lib,
inputs,
@ -24,6 +23,8 @@
outputs.overlays.additions
outputs.overlays.modifications
outputs.overlays.stable-packages
outputs.overlays.pinned-packages
outputs.overlays.master-packages
# You can also add overlays exported from other flakes:
# neovim-nightly-overlay.overlays.default
@ -45,6 +46,8 @@
nix = {
settings = {
experimental-features = "nix-command flakes";
cores = 2;
max-jobs = 8;
trusted-users = [
"root"
"m3tam3re"
@ -52,6 +55,7 @@
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
optimise.automatic = true;

View File

@ -55,10 +55,6 @@
# Enable sound.
# hardware.pulseaudio.enable = true;
# OR
services.pipewire = {
enable = true;
pulse.enable = true;
};
# Enable touchpad support (enabled default in most desktopManager).
# services.libinput.enable = true;

View File

@ -28,6 +28,6 @@
enable = true;
clean.enable = true;
clean.extraArgs = "--keep-since 4d --keep 3";
flake = "/home/m3tam3re/m3-kratos";
flake = "/home/m3tam3re/p/nixos/nixos-config";
};
}