Last active
January 12, 2021 00:42
-
-
Save theycallmemac/19ac8930570f2d88b645c3d5eab10169 to your computer and use it in GitHub Desktop.
Deafult NixOS configuration file I use for automation.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ modulesPath, pkgs, ... }: { | |
imports = [ | |
"${modulesPath}/virtualisation/amazon-image.nix" | |
]; | |
ec2.hvm = true; | |
ec2.efi = true; | |
environment.systemPackages = [ | |
pkgs.git | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment