mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-22 09:22:19 +00:00
Compare commits
2 commits
ccd04252be
...
0bb518845d
Author | SHA1 | Date | |
---|---|---|---|
0bb518845d | |||
53c4426d48 |
2 changed files with 21 additions and 5 deletions
15
flake.nix
15
flake.nix
|
@ -63,21 +63,26 @@
|
||||||
pkgs = pkgsFor.x86_64-linux;
|
pkgs = pkgsFor.x86_64-linux;
|
||||||
extraSpecialArgs = { inherit inputs outputs; };
|
extraSpecialArgs = { inherit inputs outputs; };
|
||||||
};
|
};
|
||||||
"john@penguin-fw" = lib.homeManagerConfiguration {
|
|
||||||
modules = [ ./home/penguin-fw.nix ];
|
|
||||||
pkgs = pkgsFor.x86_64-linux;
|
|
||||||
extraSpecialArgs = { inherit inputs outputs; };
|
|
||||||
};
|
|
||||||
"john@penguin-duet" = lib.homeManagerConfiguration {
|
"john@penguin-duet" = lib.homeManagerConfiguration {
|
||||||
modules = [ ./home/penguin-duet.nix ];
|
modules = [ ./home/penguin-duet.nix ];
|
||||||
pkgs = pkgsFor.aarch64-linux;
|
pkgs = pkgsFor.aarch64-linux;
|
||||||
extraSpecialArgs = { inherit inputs outputs; };
|
extraSpecialArgs = { inherit inputs outputs; };
|
||||||
};
|
};
|
||||||
|
"john@penguin-fw" = lib.homeManagerConfiguration {
|
||||||
|
modules = [ ./home/penguin-fw.nix ];
|
||||||
|
pkgs = pkgsFor.x86_64-linux;
|
||||||
|
extraSpecialArgs = { inherit inputs outputs; };
|
||||||
|
};
|
||||||
"john@pixnix" = lib.homeManagerConfiguration {
|
"john@pixnix" = lib.homeManagerConfiguration {
|
||||||
modules = [ ./home/pixnix.nix ];
|
modules = [ ./home/pixnix.nix ];
|
||||||
pkgs = pkgsFor.x86_64-linux;
|
pkgs = pkgsFor.x86_64-linux;
|
||||||
extraSpecialArgs = { inherit inputs outputs; };
|
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