b186473e68
lots of fancy new stuff, but most importantly: we no longer import all of my user config, just the very base. none of that fancy stuff is active right now, this should mostly be a no-op unless we do the same restructure that i have just done in my nixfiles here as well.
9 lines
148 B
Nix
9 lines
148 B
Nix
{config, lib, pkgs, ...}:
|
|
|
|
let
|
|
sources = import ../nix/sources.nix;
|
|
in {
|
|
imports = [
|
|
(import sources.nix-hexchen).users.hexchen.base
|
|
];
|
|
}
|