Add tools

This commit is contained in:
muon 2024-09-30 14:02:27 +00:00
parent 7ad646f580
commit 4dc6ab7864
5 changed files with 46 additions and 44 deletions

View file

@ -1,5 +1,5 @@
{ pkgs, lib, config, osConfig, ... }: let
cfg = osConfig.mods;
{ pkgs, lib, config, osConfig, ... }:
let cfg = osConfig.mods;
in {
imports = [
@ -13,4 +13,6 @@ in {
programs.home-manager.enable = true;
home.username = cfg.user.name;
home.homeDirectory = "/home/${cfg.user.name}";
# home.profileDirectory =
# "${config.home.homeDirectory}/.local/state/nix/profile/";
}