mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-05-20 05:12:34 +02:00
9429c9f93b
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
27 lines
539 B
Nix
27 lines
539 B
Nix
{config, ...}: {
|
|
imports = [
|
|
# Mostly user-specific configuration
|
|
./variables.nix
|
|
|
|
# Programs
|
|
../../home/programs/nvf
|
|
../../home/programs/shell
|
|
../../home/programs/git
|
|
../../home/programs/git/lazygit.nix
|
|
../../home/programs/nixy
|
|
../../home/programs/nix-utils
|
|
|
|
../../home/programs/group/dev.nix
|
|
];
|
|
|
|
home = {
|
|
inherit (config.var) username;
|
|
homeDirectory = "/home/" + config.var.username;
|
|
|
|
# Don't touch this
|
|
stateVersion = "24.05";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|