mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2026-06-15 00:25:39 +00:00
mostly small changes to move to a module based strucutre such that you can add more hosts at a later date
7 lines
160 B
Nix
7 lines
160 B
Nix
{ pkgs, ... }:
|
|
{
|
|
users.users.alyxia = {
|
|
name = "alyxia";
|
|
home = if pkgs.stdenv.hostPlatform.isDarwin then "/Users/alyxia" else "/home/alyxia";
|
|
};
|
|
}
|