Skip to content

Commit

Permalink
fix darwin build
Browse files Browse the repository at this point in the history
  • Loading branch information
xanderio committed Nov 9, 2024
1 parent 5a8e641 commit 8f92deb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
5 changes: 5 additions & 0 deletions darwin/ook/libvirt.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
{ pkgs, ... }:
{
config = {
nixpkgs.config.packageOverrides =
{
inherit ((builtins.getFlake "github:wegank/nixpkgs/7b6b730345cc762e8658543254aabc57ca2af04a").legacyPackages.${pkgs.system}) libvirt virt-manager;
};

environment.systemPackages = with pkgs; [
qemu
libvirt
Expand Down
12 changes: 5 additions & 7 deletions home/shell/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
{ pkgs, inputs, ... }:
let
stablePkgs = import inputs.nixos-stable { inherit (pkgs) system; };
in
{ pkgs, ... }:
{
imports = [
./fish.nix
./git.nix
];

home.packages =
(with pkgs; [
with pkgs; [
nushell
ripgrep
fd
Expand All @@ -21,8 +18,9 @@ in
cachix
nix-output-monitor
gh
])
++ [ stablePkgs.httpie ];
httpie
];


home.sessionVariables = {
PAGER = "less";
Expand Down

0 comments on commit 8f92deb

Please sign in to comment.