fullscreen

This commit is contained in:
Sakooooo 2023-07-27 20:59:50 +03:00
parent 44c14d2b7b
commit 6dc7a8aefa
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 5 additions and 4 deletions

View file

@ -314,6 +314,7 @@ myConfig = defaults {
handleEventHook = handleEventHook def
<> Hacks.trayerPaddingXmobarEventHook
<> fullscreenEventHook
}

View file

@ -11,9 +11,9 @@
outputs = { self, nixpkgs, home-manager, ...}@inputs:
let
inherit (self) outputs;
forAllSystems = nixpkgs.lib.genAttrs [
"x86_64-linux"
];
forAllSystems = nixpkgs.lib.genAttrs [
"x86_64-linux"
];
in
rec {
# custom packages
@ -25,7 +25,7 @@
devShells = forAllSystems (system:
let pkgs = nixpkgs.legacyPackages.${system};
in import ./shell.nix { inherit pkgs; }
);
);
# overlays here
overlays = import ./overlays { inherit inputs; };