26 lines
567 B
Nix
26 lines
567 B
Nix
{ pkgs, ... }@all:
|
|
{
|
|
|
|
environment = {
|
|
packages = import ./system-modules/base-packages.nix pkgs;
|
|
etcBackupExtension = ".bak";
|
|
};
|
|
android-integration = {
|
|
termux-setup-storage.enable = true;
|
|
};
|
|
system.stateVersion = pkgs.version;
|
|
nix.extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
|
|
# Set your time zone
|
|
time.timeZone = "Europe/Berlin";
|
|
|
|
home-manager = {
|
|
config = ./shell-only.nix;
|
|
useGlobalPkgs = true;
|
|
backupFileExtension = "backup";
|
|
extraSpecialArgs = { inherit (all) inputs hyper rice; };
|
|
};
|
|
}
|