home-manager: init

This commit is contained in:
Timothy DeHerrera 2019-12-15 01:35:12 -07:00
parent 6c51d2761a
commit c900537587
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122
3 changed files with 18 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{ nix, nixpkgs, flake, ... }:
{ home, nix, nixpkgs, flake, ... }:
let
utils = import ../lib/utils.nix { lib = nixpkgs.lib; };
@ -28,6 +28,7 @@ let
core
global
local
home
];
};

View file

@ -1,5 +1,18 @@
{
"inputs": {
"home": {
"inputs": {
"nixpkgs": {
"inputs": {},
"narHash": "sha256-Y5ZOTgInrYYoas3vM8uTPLA2DvFI9YoI6haftIKl9go=",
"originalUrl": "nixpkgs",
"url": "github:edolstra/nixpkgs/015c9ec3372e328ea6742b409a1e9aa26dab2b31"
}
},
"narHash": "sha256-hd2noIXKZHe8bzoVhZUz8fwCnYKxVFLjS3s3UpVE9Hs=",
"originalUrl": "github:nrdxp/home-manager/flakes",
"url": "github:nrdxp/home-manager/4aed75b903140a3e7f5ccc4528f1748391543475"
},
"nix": {
"inputs": {
"nixpkgs": {

View file

@ -4,13 +4,15 @@
epoch = 201909;
inputs.nixpkgs.url = "github:nrdxp/nixpkgs/fork";
inputs.home.url = "github:nrdxp/home-manager/flakes";
outputs = { self, nixpkgs, nix }: {
outputs = { self, home, nixpkgs, nix }: {
nixosConfigurations =
let
configs = import ./configurations {
inherit nix nixpkgs;
flake = self;
home = home.nixosModules.home-manager;
};
in