13 lines
334 B
Nix
13 lines
334 B
Nix
{
|
|
description = "User-Configuration of fluepke";
|
|
inputs
|
|
= {
|
|
libconfig.url = "github:sivizius/nixfiles/development?dir=libs/config";
|
|
};
|
|
outputs
|
|
= { libconfig, ... }:
|
|
{
|
|
user = libconfig.lib.users.load ./.;
|
|
};
|
|
}
|