summaryrefslogtreecommitdiff
path: root/sys/default.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sys/default.nix8
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
];