Move peek

This commit is contained in:
Oliver Davies 2025-04-05 09:00:00 +01:00
parent 6d744eb2ed
commit 9fc155cbd2
3 changed files with 1 additions and 18 deletions

View file

@ -1,7 +1,6 @@
{
imports = [
./dwm.nix
./peek.nix
./screenkey.nix
./st.nix
];

View file

@ -1,16 +0,0 @@
{
config,
lib,
pkgs,
...
}:
with lib;
{
options.nixosModules.peek.enable = mkEnableOption "Enable peek";
config = mkIf config.nixosModules.peek.enable {
environment.systemPackages = with pkgs; [ peek ];
};
}