refactor: moved home config to more logical folder structure

This commit is contained in:
Mohammad Rafiq 2025-03-07 13:07:41 +08:00
parent f201190ef1
commit ecaa2c0dc4
29 changed files with 165 additions and 171 deletions

20
users/rafiq.nix Normal file
View file

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