diff options
Diffstat (limited to 'makefu/1systems/darth.nix')
-rw-r--r-- | makefu/1systems/darth.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/makefu/1systems/darth.nix b/makefu/1systems/darth.nix new file mode 100644 index 000000000..7972c6201 --- /dev/null +++ b/makefu/1systems/darth.nix @@ -0,0 +1,16 @@ +{ config, pkgs, lib, ... }: + +with config.krebs.lib; +{ + imports = [ + ../2configs/fs/single-partition-ext4.nix + ../2configs/zsh-user.nix + ../. + ]; + + krebs.build.host = config.krebs.hosts.darth; + krebs.retiolum.enable = true; + nixpkgs.config.packageOverrides = pkgs: { tinc = pkgs.tinc_pre; }; + + boot.loader.grub.device = "/dev/disk/by-id/ata-ADATA_SSD_S599_64GB_10460000000000000039"; +} |