blob: 8102c98fb89364dcc18a7b85867d58b208ce59a8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# TODO(wpcarro): Support the workflow outlined in these docs.
#
# Usage:
# $ lsblk # get your USB dev path (e.g. /dev/sdb)
# $ create-installer --dev=/dev/sdb //users/wpcarro/nixos/marcus
{ pkgs, ... }:
{
imports = [
"${pkgs.nixos}/modules/installer/cd-graphical-gnome.nix"
];
config = {
networking.wireless.enable = true;
};
}
|