Skip to content

Commit 8f92deb

Browse files
committed
fix darwin build
1 parent 5a8e641 commit 8f92deb

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

darwin/ook/libvirt.nix

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{ pkgs, ... }:
22
{
33
config = {
4+
nixpkgs.config.packageOverrides =
5+
{
6+
inherit ((builtins.getFlake "github:wegank/nixpkgs/7b6b730345cc762e8658543254aabc57ca2af04a").legacyPackages.${pkgs.system}) libvirt virt-manager;
7+
};
8+
49
environment.systemPackages = with pkgs; [
510
qemu
611
libvirt

home/shell/default.nix

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
1-
{ pkgs, inputs, ... }:
2-
let
3-
stablePkgs = import inputs.nixos-stable { inherit (pkgs) system; };
4-
in
1+
{ pkgs, ... }:
52
{
63
imports = [
74
./fish.nix
85
./git.nix
96
];
107

118
home.packages =
12-
(with pkgs; [
9+
with pkgs; [
1310
nushell
1411
ripgrep
1512
fd
@@ -21,8 +18,9 @@ in
2118
cachix
2219
nix-output-monitor
2320
gh
24-
])
25-
++ [ stablePkgs.httpie ];
21+
httpie
22+
];
23+
2624

2725
home.sessionVariables = {
2826
PAGER = "less";

0 commit comments

Comments
 (0)