add pixnix home config

This commit is contained in:
John Bowdre 2023-07-28 21:56:41 -05:00
parent 2d560a7374
commit 126059e9ed
2 changed files with 17 additions and 0 deletions

View file

@ -68,6 +68,11 @@
pkgs = pkgsFor.aarch64-linux;
extraSpecialArgs = { inherit inputs outputs; };
};
"john@pixnix" = lib.homeManagerConfiguration {
modules = [ ./nix/home/pixnix.nix ];
pkgs = pkgsFor.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; };
};
};
};
}

12
nix/home/pixnix.nix Normal file
View file

@ -0,0 +1,12 @@
{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
./global
./features/desktop
];
# packages
home.packages = with pkgs; [
libvirt
vagrant
];
}