27 lines
761 B
Nix
27 lines
761 B
Nix
{ config, lib, pkgs, ... }:
|
||
|
||
{
|
||
users.users.remy = {
|
||
home = "/Users/remy";
|
||
};
|
||
system.primaryUser = "remy";
|
||
|
||
nix.enable=false;
|
||
nixpkgs.config.allowUnfree = true;
|
||
security.pam.services.sudo_local.touchIdAuth = true;
|
||
|
||
# Necessary for using flakes on this system.
|
||
nix.settings.experimental-features = "nix-command flakes";
|
||
|
||
# Enable alternative shell support in nix-darwin.
|
||
# programs.fish.enable = true;
|
||
|
||
# Set Git commit hash for darwin-version.
|
||
# system.configurationRevision = self.rev or self.dirtyRev or null;
|
||
|
||
# Used for backwards compatibility, please read the changelog before changing.
|
||
# $ darwin-rebuild changelog
|
||
system.stateVersion = 6;
|
||
nixpkgs.hostPlatform = "aarch64-darwin";
|
||
}
|