mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-22 09:22:19 +00:00
Compare commits
2 commits
866ca47f18
...
cc9ccca5d1
Author | SHA1 | Date | |
---|---|---|---|
cc9ccca5d1 | |||
105156a327 |
17 changed files with 23 additions and 3 deletions
11
flake.nix
11
flake.nix
|
@ -59,17 +59,22 @@
|
||||||
# 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/john/penguin-fw.nix ];
|
modules = [ ./nix/home/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/john/penguin-duet.nix ];
|
modules = [ ./nix/home/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/john/pixnix.nix ];
|
modules = [ ./nix/home/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; };
|
||||||
};
|
};
|
||||||
|
|
15
nix/home/jammy-wsl.nix
Normal file
15
nix/home/jammy-wsl.nix
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{ 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