nix-config/darwin/koishi/configuration.nix
2024-09-22 10:56:59 +02:00

23 lines
447 B
Nix

{ pkgs, ... }: {
nixpkgs = { config = { allowUnfree = true; }; };
services.nix-daemon.enable = true;
nix.settings.experimental-features = "nix-command flakes";
users.users.lu = {
name = "lu";
home = "/Users/lu";
shell = pkgs.fish;
};
programs.fish = {
enable = true;
vendor = {
completions.enable = true;
config.enable = true;
functions.enable = true;
};
};
system.stateVersion = 5;
}