aboutsummaryrefslogtreecommitdiff
path: root/my-pkgs/default.nix
diff options
context:
space:
mode:
authorBossCode45 <boss@tehbox.org>2025-06-18 18:20:45 +1200
committerBossCode45 <boss@tehbox.org>2025-06-18 18:20:45 +1200
commitc1b48e9f2bfc4ae0e48d0c8e35ad1f4a2189ec30 (patch)
tree4aa62f97d00c3ce2b8b01f8b1c80e545d3772315 /my-pkgs/default.nix
parent950de2748306cf41038a6bbd98c849815b256c27 (diff)
downloadnixos-configuration-c1b48e9f2bfc4ae0e48d0c8e35ad1f4a2189ec30.tar.gz
nixos-configuration-c1b48e9f2bfc4ae0e48d0c8e35ad1f4a2189ec30.zip
feat: Packaged adom and updated some stuff
Made a package for the game adom Also switched form lightdm to sddm YATwm works slightly better Note: The current flake.nix will fail for anyone else as it uses a path to find the flake
Diffstat (limited to 'my-pkgs/default.nix')
-rw-r--r--my-pkgs/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/my-pkgs/default.nix b/my-pkgs/default.nix
new file mode 100644
index 0000000..ccf18f5
--- /dev/null
+++ b/my-pkgs/default.nix
@@ -0,0 +1,8 @@
+{ config, pkgs, lib, ... }:
+{
+ nixpkgs.overlays = [
+ (final: prev: {
+ adom = prev.callPackage ./adom.nix { };
+ })
+ ];
+}