Merge remote-tracking branch 'origin/darwin' into test

This commit is contained in:
Greg Hellings
2022-09-13 22:56:16 -05:00
41 changed files with 322 additions and 86 deletions
+8
View File
@@ -0,0 +1,8 @@
{ ... }:
{
imports = [
./nix.nix
./programs.nix
];
}
+20
View File
@@ -0,0 +1,20 @@
{ pkgs, ... }:
{
# Enable flakes
nix = {
package = pkgs.nixFlakes;
# Keep freespace available, at a minimum, and enable Flakes
extraOptions = ''
experimental-features = nix-command flakes
min-free = ${toString (1024 * 1024 * 1024) }
max-free = ${toString (5 * 1024 * 1024 * 1024) }
# Used by direnv
keep-outputs = true
keep-derivations = true
'';
};
nixpkgs.config.allowUnfree = true;
}
+38
View File
@@ -0,0 +1,38 @@
{ pkgs, agenix, ... }:
let
myPackages = pypackages: with pypackages; [
pkgs.datadog-api-client
pkgs.xonsh-direnv
datadog
dateutil
ipython
pyyaml
responses
ruamel-yaml
typing-extensions
virtualenv
];
myPython = pkgs.python3.withPackages myPackages;
in {
# Base packages that need to be in all my hosts
environment.systemPackages = with pkgs; [
agenix.defaultPackage."${system}"
android-file-transfer
bitwarden-cli
diffutils
git
gnupatch
findutils
hms # My own home manager switcher
home-manager
htop
myPython
pwgen
transcrypt
unzip
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
wget
];
}