nixos/home-manager/noe/common/home-user.nix
2023-12-19 14:26:27 -05:00

15 lines
251 B
Nix

{ pkgs, config, ... }:
let
inherit (pkgs.stdenv) isDarwin;
homeDirectory = if isDarwin then "/Users/noe" else "/home/noe";
in
{
imports = [
#../../features/spotify.nix
];
home = {
inherit homeDirectory;
username = "noe";
};
}