diff options
author | Emile <git@emile.space> | 2025-02-22 23:17:25 +0100 |
---|---|---|
committer | Emile <git@emile.space> | 2025-02-22 23:17:25 +0100 |
commit | 15ba927448023dc370208d9ccbb0d6b7619dcd53 (patch) | |
tree | 490e50e9efb2b9225b529fc9900eb9e798fdab07 /nix/lib | |
parent | 4100097801550fe86399453b7922875015f34ff9 (diff) |
removed the reference to the old self.overlays.emile overlay
The overlays are now defined in self.overlays.x86_64-linux
Diffstat (limited to 'nix/lib')
-rw-r--r-- | nix/lib/flake-helper.nix | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/nix/lib/flake-helper.nix b/nix/lib/flake-helper.nix index ddace97..f841fa5 100644 --- a/nix/lib/flake-helper.nix +++ b/nix/lib/flake-helper.nix @@ -83,8 +83,6 @@ rec { { ... }: { nixpkgs.overlays = [ - self.overlays.emile - ( if system == "x86_64-linux" then self.overlays.x86_64-linux @@ -94,6 +92,11 @@ rec { null ) + # no clue why, but when rebuilding corrino and this not being commented, + # something in the hardware.bluetooth module breaks + # + # (if system == "aarch64-darwin" then self.overlays.unstable-darwin else null) + (_: _: { inherit (agenix.packages."x86_64-linux") agenix; }) (_: _: { @@ -197,8 +200,12 @@ rec { user = "root"; # user to install as sshUser = sshUser; # user to ssh to as - # make sure people can use sudo - sshOpts = ["-A" "-t" "-S"]; + # make sure people can use sudo + sshOpts = [ + "-A" + "-t" + "-S" + ]; # sshOpts = [ "-o" "ProxyCommand=none" ]; # make sure to add the nix foo on the darwin hosts to ~/.zshenv |