dot

NixOS dotfiles
git clone https://git.echoz.io/dot.git
Log | Files | Refs

default.nix (222B)


      1 {
      2   pkgs,
      3 
      4   user,
      5   ...
      6 }:
      7 {
      8   home-manager.users.${user}.programs.mpv = {
      9     enable = true;
     10 
     11     config = {
     12       keep-open = true;
     13     };
     14 
     15     scripts = with pkgs.mpvScripts; [
     16       uosc
     17       thumbfast
     18     ];
     19   };
     20 }