mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-22 17:32:19 +00:00
Compare commits
No commits in common. "5599624ecb7bbc1d6e8129e627b66180e90ecbbb" and "c92011bb81af0217919554aa0cc0384dc203eb07" have entirely different histories.
5599624ecb
...
c92011bb81
3 changed files with 3 additions and 10 deletions
|
@ -59,17 +59,17 @@
|
|||
# Available through 'home-manager --flake .#your-username@your-hostname'
|
||||
homeConfigurations = {
|
||||
"john@penguin-fw" = lib.homeManagerConfiguration {
|
||||
modules = [ ./nix/home/john/penguin-fw.nix ];
|
||||
modules = [ ./nix/home/penguin-fw.nix ];
|
||||
pkgs = pkgsFor.x86_64-linux;
|
||||
extraSpecialArgs = { inherit inputs outputs; };
|
||||
};
|
||||
"john@penguin-duet" = lib.homeManagerConfiguration {
|
||||
modules = [ ./nix/home/john/penguin-duet.nix ];
|
||||
modules = [ ./nix/home/penguin-duet.nix ];
|
||||
pkgs = pkgsFor.aarch64-linux;
|
||||
extraSpecialArgs = { inherit inputs outputs; };
|
||||
};
|
||||
"john@pixnix" = lib.homeManagerConfiguration {
|
||||
modules = [ ./nix/home/john/pixnix.nix ];
|
||||
modules = [ ./nix/home/pixnix.nix ];
|
||||
pkgs = pkgsFor.x86_64-linux;
|
||||
extraSpecialArgs = { inherit inputs outputs; };
|
||||
};
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
|
||||
imports = [
|
||||
./direnv.nix
|
||||
./go.nix
|
||||
./git.nix
|
||||
./fish.nix
|
||||
./tmux.nix
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
{ pkgs, lib, ... }: {
|
||||
programs.go = {
|
||||
enable = true;
|
||||
package = pkgs.go;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue