add super basic nix-darwin configuration for koishi
This commit is contained in:
parent
674a19dd8c
commit
a2c4cdee9b
3 changed files with 63 additions and 0 deletions
27
darwin/koishi/configuration.nix
Normal file
27
darwin/koishi/configuration.nix
Normal 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;
|
||||
}
|
21
flake.lock
generated
21
flake.lock
generated
|
@ -114,6 +114,26 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"darwin": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1726188813,
|
||||
"narHash": "sha256-Vop/VRi6uCiScg/Ic+YlwsdIrLabWUJc57dNczp0eBc=",
|
||||
"owner": "lnl7",
|
||||
"repo": "nix-darwin",
|
||||
"rev": "21fe31f26473c180390cfa81e3ea81aca0204c80",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "lnl7",
|
||||
"repo": "nix-darwin",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"flake-compat": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
|
@ -296,6 +316,7 @@
|
|||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"darwin": "darwin",
|
||||
"home-manager": "home-manager",
|
||||
"nix-index-database": "nix-index-database",
|
||||
"nixos-hardware": "nixos-hardware",
|
||||
|
|
15
flake.nix
15
flake.nix
|
@ -18,6 +18,10 @@
|
|||
stylix.url = "github:danth/stylix";
|
||||
stylix.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
# nix-darwin
|
||||
darwin.url = "github:lnl7/nix-darwin";
|
||||
darwin.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
# nix-hardware
|
||||
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||
};
|
||||
|
@ -27,6 +31,7 @@
|
|||
, nixpkgs
|
||||
, home-manager
|
||||
, nixos-hardware
|
||||
, darwin
|
||||
, ...
|
||||
}@inputs:
|
||||
let
|
||||
|
@ -89,5 +94,15 @@
|
|||
];
|
||||
};
|
||||
};
|
||||
|
||||
darwinConfigurations = {
|
||||
koishi = darwin.lib.darwinSystem {
|
||||
system = "aarch64-darwin";
|
||||
modules = [
|
||||
./darwin/koishi/configuration.nix
|
||||
home-manager.darwinModules.home-manager
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue