diff options
author | Alan Pearce | 2017-09-09 13:53:45 +0200 |
---|---|---|
committer | Alan Pearce | 2017-09-09 13:53:45 +0200 |
commit | a6ecfec5e8401c10ab8bbddc39cd203b7c0eeac7 (patch) | |
tree | 4be93465cc26a70ba2df2a3b8565c7b2fed9809a | |
parent | 91f87892e27abee249e331e5dd5997ac7f69cd2d (diff) | |
download | nixos-configuration-a6ecfec5e8401c10ab8bbddc39cd203b7c0eeac7.tar.lz nixos-configuration-a6ecfec5e8401c10ab8bbddc39cd203b7c0eeac7.tar.zst nixos-configuration-a6ecfec5e8401c10ab8bbddc39cd203b7c0eeac7.zip |
Create entry point configuration for satoshipad
-rw-r--r-- | machines/satoshipad.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/machines/satoshipad.nix b/machines/satoshipad.nix new file mode 100644 index 0000000..40fa3c7 --- /dev/null +++ b/machines/satoshipad.nix @@ -0,0 +1,11 @@ +{ config, pkgs, ... }: + +{ + imports = [ + ./hardware-configuration.nix + ]; + + networking.hostName = "satoshipad"; + + system.stateVersion = "17.03"; +} |