This repository has been archived on 2024-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config-tn/nixos/profiles/global.nix

79 lines
1.3 KiB
Nix
Raw Normal View History

2024-03-24 23:21:13 +11:00
{ config, lib, pkgs, imports, modulesPath, ... }:
2024-03-24 18:34:14 +11:00
with lib;
{
2024-03-25 09:23:35 +11:00
# NOTE
# Some 'global' areas have defaults set in their respective modules.
# These will be applied when the modules are loaded
# Not the global role.
# Not sure at this point a good way to manage globals in one place
# without mono-repo config.
2024-03-25 12:01:03 +11:00
2024-03-24 23:21:13 +11:00
imports =
[
2024-03-25 12:01:03 +11:00
(modulesPath + "/installer/scan/not-detected.nix") # Generated by nixos-config-generate
2024-03-25 22:51:18 +11:00
./global
2024-03-24 23:21:13 +11:00
];
2024-03-24 18:34:14 +11:00
2024-03-24 23:21:13 +11:00
mySystem = {
2024-03-24 18:34:14 +11:00
2024-03-24 23:21:13 +11:00
# basics for all devices
time.timeZone = "Australia/Melbourne";
security.increaseWheelLoginLimits = true;
2024-03-25 20:12:54 +11:00
system.packages = [ pkgs.bat ];
2024-03-25 22:51:18 +11:00
# Lets see if fish everywhere is OK on the pi's
# TODO decide if i drop to bash on pis?
shell.fish.enable = true;
# But wont enable plugins globally, leave them for workstations
2024-03-24 23:21:13 +11:00
};
2024-03-25 22:51:18 +11:00
2024-03-24 23:21:13 +11:00
i18n = {
defaultLocale = lib.mkDefault "en_AU.UTF-8";
};
# TODO refactor this shit out wow
# SOPS settings
# https://github.com/Mic92/sops-nix
2024-03-25 16:47:43 +11:00
2024-03-24 23:21:13 +11:00
networking.useDHCP = lib.mkDefault true;
environment.systemPackages = with pkgs; [
jq
yq
btop
vim
git
dnsutils
nix
# TODO Move
nil
nixpkgs-fmt
statix
nvd
gh
];
programs.direnv = {
# TODO move to home-manager
enable = true;
nix-direnv.enable = true;
};
programs.mtr.enable = true;
2024-03-24 18:34:14 +11:00
}
2024-03-24 23:21:13 +11:00