home-manager: cleanup&rename configuration

This commit is contained in:
steveej 2018-11-03 19:33:58 +01:00
parent a208015c62
commit eced1a3bc1
6 changed files with 6 additions and 406 deletions

View file

@ -1,7 +1,11 @@
{ config, pkgs, ... }:
{
# Package configuration
imports = [
"${builtins.fetchGit { url = "https://github.com/rycee/home-manager.git"; ref = "master"; }}/nixos"
];
home-manager.users.root = import ../../../home-manager/configuration/text-minimal.txt;
nixpkgs.config = {
allowBroken = false;
allowUnfree = true;
@ -40,10 +44,4 @@
usbutils
pciutils
];
imports = [
"${builtins.fetchGit { url = "https://github.com/rycee/home-manager.git"; ref = "master"; }}/nixos"
];
home-manager.users.root = import ../../../home-manager/configuration/root.nix;
}