Delete old darwin module

This commit is contained in:
Tobias Ostner 2024-01-09 11:41:21 +01:00
parent ecf5b62fcb
commit c4558e1729
2 changed files with 0 additions and 12 deletions

View file

@ -30,7 +30,6 @@
./modules/system.nix ./modules/system.nix
./modules/apps.nix ./modules/apps.nix
./modules/host-users.nix ./modules/host-users.nix
./modules/darwin
home-manager.darwinModules.home-manager home-manager.darwinModules.home-manager
{ {
home-manager = { home-manager = {

View file

@ -1,11 +0,0 @@
({ pkgs, ... }: {
environment = {
shells = with pkgs; [ bash zsh fish ];
loginShell = pkgs.zsh;
systemPath = [ "/opt/homebrew/bin" ];
pathsToLink = [ "/Applications" ];
};
users.users.tobi.shell = pkgs.zshInteractive;
})