dotfiles/nix/modules/common/users.nix
isabel 62fe63eea2
refactor: nix
mostly small changes to move to a module based strucutre such that you
can add more hosts at a later date
2025-01-17 13:34:38 +00:00

7 lines
160 B
Nix

{ pkgs, ... }:
{
users.users.alyxia = {
name = "alyxia";
home = if pkgs.stdenv.hostPlatform.isDarwin then "/Users/alyxia" else "/home/alyxia";
};
}