Files
Olympus/system-config/configuration/android/default.nix
2025-08-26 10:26:22 -05:00

59 lines
1.6 KiB
Nix

{ config, lib, pkgs, inputs, ... }: {
config = {
home-manager = {
backupFileExtension = ".backup";
useUserPackages = true;
useGlobalPkgs = true;
sharedModules = [
inputs.sops-nix.homeManagerModules.sops
inputs.home-manager-config
];
config = {
imports = [
inputs.nathan
];
config = {
homeconfig = {
graphical = false;
minimal = true;
homeScripts.enable = false;
};
home.homeDirectory = config.user.home;
};
};
};
terminal.font = "${pkgs.fira-code}/share/fonts/truetype/FiraCode-VF.ttf";
user = {
userName = "nathan";
uid = 10472; #update this for your device!
shell = "${pkgs.zsh}/bin/zsh";
};
time.timeZone = "America/Chicago";
android-integration = {};
system.stateVersion = "24.11";
environment = {
etcBackupExtension = ".backup";
motd = "";
};
nix = {
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
extraOptions = ''
experimental-features = nix-command flakes
builders-use-substitutes = true
max-jobs = 0
builders = ssh://remote-builder@blunkall.us x86_64-linux,aarch64-linux /run/secrets/remoteBuildKey 1 1 nixos-test,benchmark,big-parallel,kvm - -
'';
};
};
}