36 lines
696 B
Nix
36 lines
696 B
Nix
{ self, pkgs, ... }: {
|
|
nix.settings = {
|
|
pure-eval = true;
|
|
experimental-features = [
|
|
"nix-command"
|
|
"flakes"
|
|
];
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
ghostty-bin
|
|
];
|
|
users.users.Vegard = {
|
|
shell = pkgs.nushell;
|
|
|
|
packages = with pkgs; [
|
|
ripgrep
|
|
fd
|
|
sops
|
|
mosh
|
|
nixfmt
|
|
eza
|
|
];
|
|
|
|
home = "/Users/Vegard";
|
|
};
|
|
|
|
# Set Git commit hash for darwin-version.
|
|
system.configurationRevision = self.rev or self.dirtyRev or null;
|
|
# Used for backwards compatibility, please read the changelog before changing.
|
|
# $ darwin-rebuild changelog
|
|
system.stateVersion = 6;
|
|
|
|
nixpkgs.hostPlatform = "aarch64-darwin";
|
|
}
|