feat: Nix flake build for Darwin #23
13
flake.lock
13
flake.lock
|
@ -7,26 +7,27 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1731642829,
|
"lastModified": 1741126078,
|
||||||
"narHash": "sha256-vG+O2RZRzYZ8BUMNNJ+BLSj6PUoGW7taDQbp6QNJ3Xo=",
|
"narHash": "sha256-ng0a4cIq3c9E3iGKomlwqKzVYs2RLOzQho2U1Mc2sqU=",
|
||||||
"owner": "LnL7",
|
"owner": "LnL7",
|
||||||
"repo": "nix-darwin",
|
"repo": "nix-darwin",
|
||||||
"rev": "f86f158efd4bab8dce3e207e4621f1df3a760b7a",
|
"rev": "c172f50b55b087f8e7801631de977461603bb976",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "LnL7",
|
"owner": "LnL7",
|
||||||
|
"ref": "nix-darwin-24.11",
|
||||||
"repo": "nix-darwin",
|
"repo": "nix-darwin",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nixpkgs-darwin": {
|
"nixpkgs-darwin": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1733326450,
|
"lastModified": 1741029734,
|
||||||
"narHash": "sha256-hBG6Ix5ZzXCJoanrPOLtQRalYv6nnDu9AZeamRfjKJ8=",
|
"narHash": "sha256-0+dlOH+9mut5mtw8iUukJ3Q9cx/DXgBarK05W7MKggA=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "f9ef77eb704d063bfbff7f04531a0b325cc1a18f",
|
"rev": "c3d6c20a6a16cbfdc11405c4dd0fdf64ec3a3899",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs-darwin.url = "github:NixOS/nixpkgs/nixpkgs-24.11-darwin";
|
nixpkgs-darwin.url = "github:NixOS/nixpkgs/nixpkgs-24.11-darwin";
|
||||||
nix-darwin = {
|
nix-darwin = {
|
||||||
url = "github:LnL7/nix-darwin";
|
url = "github:LnL7/nix-darwin/nix-darwin-24.11";
|
||||||
inputs.nixpkgs.follows = "nixpkgs-darwin";
|
inputs.nixpkgs.follows = "nixpkgs-darwin";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
fd
|
fd
|
||||||
gnupg
|
gnupg
|
||||||
|
|
||||||
|
git
|
||||||
direnv
|
direnv
|
||||||
nix-direnv
|
nix-direnv
|
||||||
rustup
|
rustup
|
||||||
|
|
|
@ -16,6 +16,8 @@
|
||||||
"autoconf"
|
"autoconf"
|
||||||
"poppler"
|
"poppler"
|
||||||
"automake"
|
"automake"
|
||||||
|
|
||||||
|
"emacs-plus"
|
||||||
];
|
];
|
||||||
casks = [
|
casks = [
|
||||||
# System monitoring
|
# System monitoring
|
||||||
|
@ -35,6 +37,7 @@
|
||||||
"vlc"
|
"vlc"
|
||||||
"darktable"
|
"darktable"
|
||||||
"adobe-dng-converter"
|
"adobe-dng-converter"
|
||||||
|
"adobe-acrobat-reader"
|
||||||
|
|
||||||
# Communications
|
# Communications
|
||||||
"signal"
|
"signal"
|
||||||
|
@ -51,7 +54,7 @@
|
||||||
"skim"
|
"skim"
|
||||||
|
|
||||||
# Editors
|
# Editors
|
||||||
"emacs-mac"
|
#"emacs-mac"
|
||||||
"arduino-ide"
|
"arduino-ide"
|
||||||
"blender"
|
"blender"
|
||||||
"inkscape"
|
"inkscape"
|
||||||
|
@ -65,7 +68,8 @@
|
||||||
];
|
];
|
||||||
taps = [
|
taps = [
|
||||||
"koekeishiya/formulae"
|
"koekeishiya/formulae"
|
||||||
"railwaycat/emacsmacport"
|
#"railwaycat/emacsmacport"
|
||||||
|
"d12frosted/emacs-plus"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue