add super basic nix-darwin configuration for koishi

This commit is contained in:
insects 2024-09-21 11:36:48 +02:00
parent 674a19dd8c
commit a2c4cdee9b
3 changed files with 63 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ 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;
}