pantheon/users/rafiq.nix
2025-03-07 18:10:08 +08:00

21 lines
461 B
Nix

{ pkgs, ... }: {
imports = [
./modules/personalisation.nix
./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 = "rafiq";
homeDirectory = "/home/rafiq";
# This defines the version home-manager
# was originally bulit against on this system.
# Do not change it.
stateVersion = "25.05";
};
}