too much rewriting at once... (bad idea)

This commit is contained in:
Schrottkatze 2025-03-27 20:48:56 +01:00
parent 056661f6f8
commit 2390273f53
Signed by: schrottkatze
SSH key fingerprint: SHA256:FPOYVeBy3QP20FEM42uWF1Wa/Qhlk+L3S2+Wuau/Auo
12 changed files with 48 additions and 74 deletions

View file

@ -12,29 +12,10 @@
with lib;
with builtins; {
imports = [lix-module.nixosModules.default];
nix = {
extraOptions = ''
experimental-features = nix-command flakes
keep-outputs = true
keep-derivations = true
'';
};
nixpkgs = {
config = {
allowUnfree = true;
permittedInsecurePackages = [
"electron-27.3.11"
"nodejs-16.20.0"
];
};
overlays = [rs-programs niri.overlays.niri];
};
environment = {
systemPackages = with pkgs; [
overskride
pulsemixer
htmlq
@ -88,18 +69,14 @@ with builtins; {
];
};
networking = {
networkmanager = {
enable = true;
};
};
hardware.graphics.enable = true;
services = {
systemd-lock-handler.enable = true;
openssh = {
enable = true;
# settings.PasswordAuthentication = false;
# settings.KbdInteractiveAuthentication = false;
settings.PasswordAuthentication = false;
settings.KbdInteractiveAuthentication = false;
};
};
@ -116,31 +93,11 @@ with builtins; {
hardware.gpgSmartcards.enable = true;
time.timeZone = "Europe/Berlin";
home-manager.users.jade = {
nixosConfig,
pkgs,
...
}: {
home.sessionVariables.TZ = nixosConfig.time.timeZone;
};
nixpkgs.config.packageOverrides = pkgs: {
sudo = pkgs.sudo.override {withInsults = true;};
};
security.sudo.extraConfig = "Defaults insults";
boot.kernel.sysctl."vm.max_map_count" = 2147483642;
hardware = {
uinput.enable = true;
bluetooth.enable = true;
# keyboard.uhk.enable = true;
};
services.avahi = {
enable = true;
};
security.rtkit.enable = true;
@ -154,12 +111,4 @@ with builtins; {
enable = true;
algorithm = "zstd";
};
users.defaultUserShell = pkgs.nushell;
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 60d";
};
}