10 lines
407 B
Nix
10 lines
407 B
Nix
{ config, pkgs, lib, inputs, ... }:
|
||
{
|
||
#imports = [ <home-manager/nixos> ];
|
||
imports = [ inputs.home-manager.nixosModule ];
|
||
home-manager.useGlobalPkgs = true; # go brrr, reuse overrides
|
||
#home-manager.useUserPackages = true # needed if VM, somewhat brrr, installs user packages to /etc instead of ~/.nix-profile
|
||
|
||
# When adding a new user accounts: Don't forget to set a password with ‘passwd’!
|
||
}
|