mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-22 09:22:19 +00:00
add volly configuration
This commit is contained in:
parent
53c4426d48
commit
0bb518845d
2 changed files with 16 additions and 0 deletions
|
@ -78,6 +78,11 @@
|
|||
pkgs = pkgsFor.x86_64-linux;
|
||||
extraSpecialArgs = { inherit inputs outputs; };
|
||||
};
|
||||
"john@volly" = lib.homeManagerConfiguration {
|
||||
modules = [ ./home/volly.nix ];
|
||||
pkgs = pkgsFor.x86_64-linux;
|
||||
extraSpecialArgs = { inherit inputs outputs; };
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
11
home/volly.nix
Normal file
11
home/volly.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ inputs, outputs, lib, config, pkgs, ... }: {
|
||||
imports = [
|
||||
./global
|
||||
./features/cli/extras
|
||||
];
|
||||
|
||||
# packages
|
||||
home.packages = with pkgs; [
|
||||
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue