mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-26 02:52:18 +00:00
Compare commits
No commits in common. "cc9ccca5d1f58f8b9b104086020b3325eb5c6e0e" and "866ca47f18e738086bc32f9b86f25faa6c9cf070" have entirely different histories.
cc9ccca5d1
...
866ca47f18
17 changed files with 3 additions and 23 deletions
11
flake.nix
11
flake.nix
|
@ -59,22 +59,17 @@
|
||||||
# Available through 'home-manager --flake .#your-username@your-hostname'
|
# Available through 'home-manager --flake .#your-username@your-hostname'
|
||||||
homeConfigurations = {
|
homeConfigurations = {
|
||||||
"john@penguin-fw" = lib.homeManagerConfiguration {
|
"john@penguin-fw" = lib.homeManagerConfiguration {
|
||||||
modules = [ ./nix/home/penguin-fw.nix ];
|
modules = [ ./nix/home/john/penguin-fw.nix ];
|
||||||
pkgs = pkgsFor.x86_64-linux;
|
pkgs = pkgsFor.x86_64-linux;
|
||||||
extraSpecialArgs = { inherit inputs outputs; };
|
extraSpecialArgs = { inherit inputs outputs; };
|
||||||
};
|
};
|
||||||
"john@penguin-duet" = lib.homeManagerConfiguration {
|
"john@penguin-duet" = lib.homeManagerConfiguration {
|
||||||
modules = [ ./nix/home/penguin-duet.nix ];
|
modules = [ ./nix/home/john/penguin-duet.nix ];
|
||||||
pkgs = pkgsFor.aarch64-linux;
|
pkgs = pkgsFor.aarch64-linux;
|
||||||
extraSpecialArgs = { inherit inputs outputs; };
|
extraSpecialArgs = { inherit inputs outputs; };
|
||||||
};
|
};
|
||||||
"john@pixnix" = lib.homeManagerConfiguration {
|
"john@pixnix" = lib.homeManagerConfiguration {
|
||||||
modules = [ ./nix/home/pixnix.nix ];
|
modules = [ ./nix/home/john/pixnix.nix ];
|
||||||
pkgs = pkgsFor.x86_64-linux;
|
|
||||||
extraSpecialArgs = { inherit inputs outputs; };
|
|
||||||
};
|
|
||||||
"jbowdre@jammy-wsl" = lib.homeManagerConfiguration {
|
|
||||||
modules = [ ./nix/home/jammy-wsl.nix ];
|
|
||||||
pkgs = pkgsFor.x86_64-linux;
|
pkgs = pkgsFor.x86_64-linux;
|
||||||
extraSpecialArgs = { inherit inputs outputs; };
|
extraSpecialArgs = { inherit inputs outputs; };
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
||||||
imports = [
|
|
||||||
./global
|
|
||||||
];
|
|
||||||
|
|
||||||
home = {
|
|
||||||
# username override
|
|
||||||
username = "jbowdre";
|
|
||||||
packages = with pkgs; [
|
|
||||||
vagrant
|
|
||||||
wslu
|
|
||||||
wsl-open
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue