blob: 3229603548b2ddb682cbf80499fe25fe64cf5be2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ config, pkgs, ... }:
{
imports =
[
../2configs/fs/single-partition-ext4.nix
../2configs/zsh-user.nix
];
krebs = {
enable = true;
retiolum.enable = true;
build.host = config.krebs.hosts.darth;
};
# You want to change these :)
boot.loader.grub.device = "/dev/sda";
}
|