nixos/home-manager/noe/common/home-user.nix
2024-02-10 10:40:38 -05:00

15 lines
243 B
Nix

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