This commit is contained in:
lsoriano-mcm
2025-06-06 07:39:53 -05:00
parent 6b0a342cdd
commit e6103c3153
3 changed files with 29 additions and 7 deletions
+7 -6
View File
@@ -4,12 +4,13 @@
environment.systemPackages = [pkgs.vim];
# Auto upgrade nix package and the daemon service.
services.nix-daemon.enable = true;
services.karabiner-elements.enable = true;
# services.nix-daemon.enable = true;
# services.karabiner-elements.enable = true;
# nix.package = pkgs.nix;
# Necessary for using flakes on this system.
nix.settings.experimental-features = "nix-command flakes";
nix.settings.trusted-users = ["@groups" "biscuit"];
# Create /etc/zshrc that loads the nix-darwin environment.
programs.zsh.enable = true; # default shell on catalina
@@ -17,13 +18,13 @@
# Used for backwards compatibility, please read the changelog before changing.
# $ darwin-rebuild changelog
system.stateVersion = 4;
system.stateVersion = 5;
# The platform the configuration will be used on.
nixpkgs.hostPlatform = "aarch64-darwin";
users.users.davish = {
name = "davish";
home = "/Users/davish";
users.users.lsoriano = {
name = "lsoriano";
home = "/Users/lsoriano";
};
}