dotfiles/machines/sashimi/default.nix

30 lines
541 B
Nix
Raw Normal View History

{
2023-02-10 07:46:37 +01:00
config,
2023-02-19 05:03:01 +01:00
lib,
2023-02-10 07:46:37 +01:00
pkgs,
...
}: {
2023-02-20 08:58:46 +01:00
imports = [
./brew.nix
];
2023-02-20 09:09:29 +01:00
users.users.winston.home = "/Users/winston";
networking = let
name = "sashimi";
in {
computerName = name;
hostName = name;
};
# Used for backwards compatibility, please read the changelog before changing.
# $ darwin-rebuild changelog
system.stateVersion = 4;
security.pam.enableSudoTouchIdAuth = true;
system.defaults.alf.stealthenabled = 1;
# Auto upgrade nix package and the daemon service.
services.nix-daemon.enable = true;
}