mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-22 09:22:19 +00:00
add deb01 configuration
This commit is contained in:
parent
6ed0f8f76c
commit
ccd04252be
2 changed files with 16 additions and 0 deletions
|
@ -58,6 +58,11 @@
|
||||||
# Standalone home-manager configuration entrypoint
|
# Standalone home-manager configuration entrypoint
|
||||||
# Available through 'home-manager --flake .#your-username@your-hostname'
|
# Available through 'home-manager --flake .#your-username@your-hostname'
|
||||||
homeConfigurations = {
|
homeConfigurations = {
|
||||||
|
"john@deb01" = lib.homeManagerConfiguration {
|
||||||
|
modules = [ ./home/deb01.nix ];
|
||||||
|
pkgs = pkgsFor.x86_64-linux;
|
||||||
|
extraSpecialArgs = { inherit inputs outputs; };
|
||||||
|
};
|
||||||
"john@penguin-fw" = lib.homeManagerConfiguration {
|
"john@penguin-fw" = lib.homeManagerConfiguration {
|
||||||
modules = [ ./home/penguin-fw.nix ];
|
modules = [ ./home/penguin-fw.nix ];
|
||||||
pkgs = pkgsFor.x86_64-linux;
|
pkgs = pkgsFor.x86_64-linux;
|
||||||
|
|
11
home/deb01.nix
Normal file
11
home/deb01.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