mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-25 02:22:18 +00:00
add pixnix home config
This commit is contained in:
parent
2d560a7374
commit
126059e9ed
2 changed files with 17 additions and 0 deletions
|
@ -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
12
nix/home/pixnix.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ inputs, outputs, lib, config, pkgs, ... }: {
|
||||
imports = [
|
||||
./global
|
||||
./features/desktop
|
||||
];
|
||||
|
||||
# packages
|
||||
home.packages = with pkgs; [
|
||||
libvirt
|
||||
vagrant
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue