mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
scroll-boost: convert to module
This commit is contained in:
parent
dcb1e17982
commit
32e0d516a6
2 changed files with 20 additions and 20 deletions
11
default.nix
11
default.nix
|
@ -4,16 +4,10 @@ let
|
|||
cfg = config.sconfig;
|
||||
in
|
||||
{
|
||||
options.sconfig = {
|
||||
|
||||
profile = mkOption {
|
||||
options.sconfig.profile = mkOption {
|
||||
type = types.enum [ "server" "desktop-gnome" "desktop-sway" ];
|
||||
};
|
||||
|
||||
scroll-boost = mkEnableOption "Patch libinput scroll speed";
|
||||
|
||||
};
|
||||
|
||||
config = mkMerge [
|
||||
|
||||
(mkIf (cfg.profile == "server") (mkMerge [
|
||||
|
@ -29,14 +23,13 @@ in
|
|||
(import ./modules/graphical.nix { inherit pkgs; })
|
||||
]))
|
||||
|
||||
(mkIf cfg.scroll-boost (import ./modules/scroll-boost { }))
|
||||
|
||||
];
|
||||
|
||||
imports = [
|
||||
./modules/alacritty.nix
|
||||
./modules/baseline.nix
|
||||
./modules/cli.nix
|
||||
./modules/scroll-boost
|
||||
./modules/status-on-console.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
{ ... }:
|
||||
{ config, lib, ... }:
|
||||
let
|
||||
cfg = config.sconfig.scroll-boost;
|
||||
in
|
||||
{
|
||||
options.sconfig.scroll-boost = lib.mkEnableOption "Patch xf86-libinput scroll speed";
|
||||
|
||||
config = lib.mkIf cfg {
|
||||
nixpkgs.overlays = [
|
||||
(self: super: {
|
||||
xorg = super.xorg.overrideScope' (selfB: superB: {
|
||||
|
@ -10,4 +16,5 @@
|
|||
});
|
||||
})
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue