diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-04-01 07:26:51 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-04-01 08:00:56 -0600 |
| commit | f687240a3702be7e18b8b51d1b9c13482082c0cb (patch) | |
| tree | f6db6035b67dea2063be62c15bdcedbb47e79eb2 /sys/default.nix | |
| parent | f7cc6c83af50e339efd44ef5e4a56770952821ac (diff) | |
sys: add btclone to systemPackages
Diffstat (limited to '')
| -rw-r--r-- | sys/default.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/default.nix b/sys/default.nix index 643cc0d..a11dd26 100644 --- a/sys/default.nix +++ b/sys/default.nix @@ -1,4 +1,4 @@ -selfFlake: +{ self }: { lib, config, pkgs, modulesPath, ... }: with lib; let cfg = config.local; @@ -141,7 +141,7 @@ in { }; config = { - nixpkgs.overlays = [ selfFlake.overlay ]; + nixpkgs.overlays = [ self.overlay ]; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions @@ -296,6 +296,10 @@ in { displayManager.startx.enable = true; }; + environment.systemPackages = [ + pkgs.local.btclone + ]; + services.udev.packages = [ pkgs.android-udev-rules ]; |
