8 lines
180 B
Nix
8 lines
180 B
Nix
|
{ ... }:
|
||
|
let
|
||
|
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz";
|
||
|
in
|
||
|
{
|
||
|
imports = [ (import "${home-manager}/nixos") ];
|
||
|
}
|