diff options
author | lassulus <lass@aidsballs.de> | 2016-03-15 14:14:29 +0100 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-03-15 14:14:29 +0100 |
commit | 72939a2d6f45950dbfa6ec0815eae62e83d02630 (patch) | |
tree | d35ae568feeb1d1110be316ba8d434308e0aa780 /makefu/1systems/darth.nix | |
parent | db3dd77f6de5964bcaa265bf8e5863d7647932f5 (diff) | |
parent | 2e317bfe747ec968d3b933ae4c0df68ad204021c (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/1systems/darth.nix')
-rw-r--r-- | makefu/1systems/darth.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/makefu/1systems/darth.nix b/makefu/1systems/darth.nix new file mode 100644 index 000000000..a33744f0b --- /dev/null +++ b/makefu/1systems/darth.nix @@ -0,0 +1,17 @@ +{ config, pkgs, lib, ... }: + +with config.krebs.lib; +{ + imports = [ + ../2configs/fs/single-partition-ext4.nix + ../2configs/zsh-user.nix + ../. + ]; + + krebs.retiolum.enable = true; + + boot.loader.grub.device = "/dev/disk/by-id/ata-ADATA_SSD_S599_64GB_10460000000000000039"; + users.users.root.openssh.authorizedKeys.keys = [ + config.krebs.users.makefu-omo.pubkey + ]; +} |