Modularized config

This commit is contained in:
2026-01-28 18:11:35 +01:00
parent 3b2a08f16c
commit 94651da127
7 changed files with 121 additions and 212 deletions

View File

@@ -0,0 +1,18 @@
{ config, pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
users.defaultUserShell = pkgs.zsh;
environment.systemPackages = with pkgs; [
gnumake
git
];
security.rtkit.enable = true;
system.stateVersion = "25.11";
}