Compare commits

..

No commits in common. "069987f47e69b15f3086f3221a8e46a3a0d737b3" and "7d787a2770166fb01cb4f669b40c67650b147831" have entirely different histories.

4 changed files with 5 additions and 13 deletions

View file

@ -149,9 +149,7 @@
overlays = import ./overlays // {
lib = final: prev: { inherit lib; };
pkgs = final: prev: {
ambroisie = prev.recurseIntoAttrs (import ./pkgs { pkgs = prev; });
};
pkgs = final: prev: { ambroisie = import ./pkgs { pkgs = prev; }; };
};
nixosConfigurations = lib.mapAttrs buildHost {

View file

@ -25,7 +25,7 @@ in
times = {
dawn = mkTimeOption "Dawn time" "6:00-7:30";
dusk = mkTimeOption "Dusk time" "18:30-20:00";
dusk = mkTimeOption "Dawn time" "18:30-20:00";
};
};

View file

@ -1,4 +1,4 @@
{ lib, fetchFromGitHub, qt5, stdenv }:
{ lib, fetchFromGitHub, qt5 }:
qt5.mkDerivation rec {
pname = "dragger";
version = "0.1.0";
@ -24,6 +24,6 @@ qt5.mkDerivation rec {
homepage = "https://gitea.belanyi.fr/ambroisie/dragger";
license = licenses.mit;
maintainers = [ ambroisie ];
platforms = platforms.linux;
platforms = platforms.all;
};
}

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ config, lib, ... }:
let
cfg = config.my.profiles.wm;
in
@ -23,11 +23,5 @@ in
# Auto disk mounter
my.home.udiskie.enable = true;
})
(lib.mkIf (cfg.windowManager != null) {
environment.systemPackages = with pkgs; [
ambroisie.dragger
];
})
];
}