pantheon/users/rafiq.nix
2025-03-27 01:35:31 +08:00

28 lines
473 B
Nix

{
pkgs,
inputs,
lib,
username,
...
}:
{
imports = [
./modules/sh.nix
./modules/de.nix
./modules/utils.nix
];
# This enables using home-manager from the command line.
programs.home-manager.enable = true;
home = {
username = "${username}";
homeDirectory = "/home/${username}";
# This defines the version home-manager
# was originally bulit against on this system.
# Do not change it.
stateVersion = "25.05";
};
}