update blackadder kernel, rm libinput-gestures

auto-flake-update
Yorick van Pelt 2021-06-06 15:14:27 +02:00
parent d7a572128b
commit 6faa93b81c
Signed by: yorick
GPG Key ID: D8D3CC6D951384DE
5 changed files with 2 additions and 45 deletions

View File

@ -16,7 +16,6 @@ in
};
programs.mako.enable = true;
services = {
libinput-gestures.enable = true;
gpg-agent.extraConfig = ''
pinentry-program ${pkgs.pinentry_gnome}/bin/pinentry-gnome3
'';

View File

@ -8,7 +8,7 @@ let
TF_SHELL = shell;
} "${pkgs.thefuck}/bin/thefuck -a > $out";
in {
imports = [ ./arbtt.nix ./libinput-gestures.nix ./desktop.nix ];
imports = [ ./arbtt.nix ./desktop.nix ];
nixpkgs = {
config.allowUnfree = true;
inherit (import /home/yorick/dotfiles/config.nix) overlays;

View File

@ -1,39 +0,0 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.libinput-gestures;
in {
options.services.libinput-gestures = {
enable = mkEnableOption "libinput-gestures";
package = mkOption { type = types.package; default = pkgs.libinput-gestures; };
};
config = mkIf cfg.enable {
systemd.user.services.libinput-gestures = {
Unit = {
Description = "libinput-gestures";
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
Service = {
ExecStart = ''
${pkgs.libinput-gestures}/bin/libinput-gestures
'';
};
};
};
}

View File

@ -11,7 +11,7 @@ in {
boot.loader.efi.canTouchEfiVariables = true;
boot.supportedFilesystems = [ "zfs" ];
boot.kernelModules = [ "nct6775" ];
boot.kernelPackages = pkgs.linuxPackages_5_10;
boot.kernelPackages = pkgs.linuxPackages_5_11; # zfs
networking.hostId = "c7736638";
services.zfs.autoScrub.enable = true;
services.zfs.trim.enable = true;

View File

@ -5,9 +5,6 @@
ftb = super.callPackage ./ftb.nix {};
pyroscope = super.callPackage ./pyroscope {};
#lejos = super.callPackage ../pkgs/lejos.nix {};
libinput-gestures = super.libinput-gestures.override { extraUtilsPath = [
self.xdotool self.python3
];};
weiightminder = super.callPackage (builtins.fetchGit {
url = https://gist.github.com/yorickvP/229d21a7da13c9c514dbd26147822641;