diff options
| author | BossCode45 <human.cyborg42@gmail.com> | 2025-01-04 15:14:05 +1300 |
|---|---|---|
| committer | BossCode45 <human.cyborg42@gmail.com> | 2025-01-04 15:14:05 +1300 |
| commit | aa1500fea32db04c9e4fe72786ebd7e3479b6a8a (patch) | |
| tree | df2bcb0182704dac9e1813f269fb46bb67e65c61 /YATwm.nix | |
| parent | d1d4a63d4473cd4910b678cf5b385f622186fbd3 (diff) | |
| download | YATwm-aa1500fea32db04c9e4fe72786ebd7e3479b6a8a.tar.gz YATwm-aa1500fea32db04c9e4fe72786ebd7e3479b6a8a.zip | |
feat: Commands restructure + home manager module now makes config
Commands module is now a separate libraray that the flake includes.
The home manager module will now auto generate the config and has
options for different things such as keybinds, gaps, workspaces, etc.
Diffstat (limited to 'YATwm.nix')
| -rw-r--r-- | YATwm.nix | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -3,7 +3,9 @@ fetchgit, xorg, libnotify, - pkg-config + pkg-config, + inputs, + ... }: @@ -14,7 +16,7 @@ stdenv.mkDerivation { src = fetchgit { url = "https://git.tehbox.org/cgit/boss/YATwm.git/"; rev = "v0.0.1"; - hash = "sha256-c0GIwZFZoaYsq6cK1cPzjxwPZzNg7tyDh44vLFsdMAI="; + hash = "sha256-A4Yra/903rOeEbXfFia/A2HRPrFyE1b05mzHWlDImCY="; }; installPhase = '' @@ -26,5 +28,11 @@ install -D -m 644 config $out/etc/YATwm/config runHook postInstall ''; - buildInputs = [ xorg.libX11 xorg.libXrandr libnotify pkg-config ]; + buildInputs = [ + xorg.libX11 + xorg.libXrandr + libnotify + pkg-config + inputs.libCommands.packages.x86_64-linux.default + ]; } |
