flake/darwin/profiles/common/core/default.nix

52 lines
1.2 KiB
Nix
Raw Normal View History

2024-01-17 04:47:27 +00:00
{
inputs,
pkgs,
config,
lib,
2024-01-17 04:47:27 +00:00
...
}: {
### Options
home-manager.users.guanranwang = import ./home;
2023-11-17 05:38:25 +00:00
imports = [
./nix
2023-12-13 11:02:11 +00:00
./anti-features.nix
2024-01-03 14:41:18 +00:00
./networking.nix
2023-12-13 11:02:11 +00:00
2024-01-03 14:41:18 +00:00
inputs.self.darwinModules.default
2023-12-13 11:02:11 +00:00
inputs.home-manager.darwinModules.home-manager
2023-11-17 05:38:25 +00:00
];
2023-12-13 11:02:11 +00:00
2024-01-17 04:47:27 +00:00
users = {
knownUsers = ["guanranwang"];
users."guanranwang" = {
createHome = true;
description = "Guanran Wang";
home = "/Users/guanranwang";
shell = pkgs.fish;
uid = 501;
};
};
2023-12-13 11:02:11 +00:00
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {inherit inputs;}; # ??? isnt specialArgs imported by default ???
};
# Create /etc/zshrc that loads the nix-darwin environment.
programs.zsh.enable = true; # default shell on catalina
programs.fish.enable = true;
# fucking horrible
# https://github.com/LnL7/nix-darwin/issues/122#issuecomment-1659465635
programs.fish.loginShellInit = let
dquote = str: "\"" + str + "\"";
makeBinPathList = map (path: path + "/bin");
in ''
fish_add_path --move --prepend --path ${lib.concatMapStringsSep " " dquote (makeBinPathList config.environment.profiles)}
set fish_user_paths $fish_user_paths
'';
2023-11-17 05:38:25 +00:00
}