This commit is contained in:
biscuit
2025-06-06 08:38:11 -05:00
parent 657fde7545
commit 8957622879
3 changed files with 21 additions and 2 deletions
+1
View File
@@ -25,6 +25,7 @@
};
outputs = {
self,
nixpkgs,
home-manager,
darwin,
+13
View File
@@ -0,0 +1,13 @@
{
config,
pkgs,
...
}: {
imports = [
];
programs.home-manager.enable = true;
home.packages = [];
home.stateVersion = "23.05";
}
+7 -2
View File
@@ -5,7 +5,11 @@
}: {
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages = [pkgs.vim];
environment.systemPackages = with pkgs; [
vim
neovim
lazygit
];
# Auto upgrade nix package and the daemon service.
# services.nix-daemon.enable = true;
@@ -20,7 +24,6 @@
programs.zsh.enable = true; # default shell on catalina
# programs.fish.enable = true;
# Used for backwards compatibility, please read the changelog before changing.
# $ darwin-rebuild changelog
system.stateVersion = 5;
@@ -31,4 +34,6 @@
name = "lsoriano";
home = "/Users/lsoriano";
};
home-manager.users.lsoriano = import ../../home/macos/home.nix;
}