diff options
author | Franck Cuny <franck@fcuny.net> | 2024-12-08 14:59:03 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-12-08 15:36:32 -0800 |
commit | 48ea2837adff1483d6d5e8dd6f65611914ddda88 (patch) | |
tree | 8adb236371b1b3db63d450bb98b583b5d0f67cc6 /nix/hosts/darwin/mba/default.nix | |
parent | refactor overall configuration (diff) | |
download | world-48ea2837adff1483d6d5e8dd6f65611914ddda88.tar.gz |
more refactoring
Diffstat (limited to 'nix/hosts/darwin/mba/default.nix')
-rw-r--r-- | nix/hosts/darwin/mba/default.nix | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/nix/hosts/darwin/mba/default.nix b/nix/hosts/darwin/mba/default.nix deleted file mode 100644 index 21189a8..0000000 --- a/nix/hosts/darwin/mba/default.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ pkgs, self, ... }: { - networking.hostName = "mba-fcuny"; - - users.users.fcuny.home = "/Users/fcuny"; - users.users.fcuny.shell = pkgs.fish; - programs.fish.enable = true; - environment.shells = [ pkgs.fish ]; - - system.stateVersion = 5; - - home-manager.users.fcuny = - import "${self}/nix/profiles/home-manager/personal.nix"; - - # brew packages I only want to get installed on this machine - homebrew.casks = [ "zoom" ]; -} |