10 lines
223 B
Nix
10 lines
223 B
Nix
|
let
|
||
|
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/release-23.11.tar.gz";
|
||
|
in
|
||
|
{
|
||
|
imports = [
|
||
|
(import "${home-manager}/nixos")
|
||
|
./servostar/user.nix
|
||
|
];
|
||
|
}
|