nixfleet/modules/common/default.nix
Andrea Ciceri 69dfaddbf2
All checks were successful
EVAL aarch64-linux.sisko
BUILD x86_64-linux.picard
UPLOAD x86_64-linux.picard
DOWNLOAD x86_64-linux.picard
CACHIX x86_64-linux.picard
ATTIC x86_64-linux.picard
/ test (push) Successful in 40s
Add git to default packages for root
2025-05-17 09:47:19 +02:00

31 lines
572 B
Nix

{
lib,
fleetModules,
pkgs,
...
}:
{
imports = fleetModules [
"nix"
"auto-upgrade"
];
hardware.i2c.enable = true;
system.stateVersion = lib.mkForce "22.11";
time.timeZone = lib.mkDefault "Europe/Rome";
users.mutableUsers = false;
i18n.defaultLocale = "en_US.UTF-8";
nixpkgs.config.allowUnfree = true; # Forgive me Mr. Stallman :(
system.switch.enableNg = true;
environment.systemPackages = with pkgs; [
btop
ncdu
git
];
# FIXME not the best place
nixpkgs.config.permittedInsecurePackages = [
"olm-3.2.16"
];
}