pantheon/systems/modules/common.nix
2025-03-05 06:37:18 +08:00

14 lines
305 B
Nix

{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
];
}