mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
16 lines
315 B
Nix
16 lines
315 B
Nix
# ~/.config/nixcfgs/users/js0ny/default.nix
|
|
{pkgs, ...}: let
|
|
username = "js0ny";
|
|
in {
|
|
home.username = username;
|
|
home.homeDirectory =
|
|
if pkgs.stdenv.isDarwin
|
|
then "/Users/${username}"
|
|
else "/home/${username}";
|
|
|
|
home.packages = with pkgs; [
|
|
home-manager
|
|
];
|
|
|
|
home.stateVersion = "25.05";
|
|
}
|