stockholm/makefu/1systems/darth.nix

20 lines
509 B
Nix
Raw Normal View History

2016-03-11 01:10:34 +00:00
{ config, pkgs, lib, ... }:
with config.krebs.lib;
2016-03-06 19:56:25 +00:00
{
2016-03-11 01:10:34 +00:00
imports = [
2016-03-06 19:56:25 +00:00
../2configs/fs/single-partition-ext4.nix
../2configs/zsh-user.nix
2016-03-11 01:10:34 +00:00
../.
];
krebs.build.host = config.krebs.hosts.darth;
krebs.retiolum.enable = true;
nixpkgs.config.packageOverrides = pkgs: { tinc = pkgs.tinc_pre; };
2016-03-11 01:10:34 +00:00
boot.loader.grub.device = "/dev/disk/by-id/ata-ADATA_SSD_S599_64GB_10460000000000000039";
2016-03-11 08:03:49 +00:00
users.users.root.openssh.authorizedKeys.keys = [
config.krebs.users.makefu-omo.pubkey
];
2016-03-06 19:56:25 +00:00
}