13 lines
289 B
Nix
13 lines
289 B
Nix
{ config, inputs, ... }:
|
|
{
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
users.lelgenio = {
|
|
my = config.my;
|
|
# Don't add other modules here, add them in home.nix
|
|
imports = [ ../user/home.nix ];
|
|
};
|
|
backupFileExtension = "bkp";
|
|
};
|
|
}
|