15 lines
251 B
Nix
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";
|
|
};
|
|
}
|