refactor: move all common settings into its own file

This commit is contained in:
Mohammad Rafiq 2025-03-05 06:37:18 +08:00
parent bcffebd32b
commit 7c0f8e4f79
2 changed files with 15 additions and 13 deletions

View file

@ -0,0 +1,14 @@
{pkgs, ...}: {
users.users.rafiq = {
isNormalUser = true;
description = "rafiq";
extraGroups = ["networkmanager" "wheel"];
};
nixpkgs.config.allowUnfree = true;
nix.settings.experimental-features = ["nix-command" "flakes"];
environment.systemPackages = with pkgs; [
git
];
}