nixos-config: add live-usb

This commit is contained in:
steveej 2018-10-28 11:21:37 +01:00
parent 617a84a384
commit 69cca39dc5
6 changed files with 417 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ config,
pkgs,
... }:
let
in
{
nixpkgs.config = {
allowBroken = false;
allowUnfree = true;
packageOverrides = pkgs: rec {
};
};
imports =
[
../common/pkg/default.nix
];
environment.systemPackages = with pkgs; [
firefox
gitFull
gpg2
nvim
];
}