Remove 'with' from most modules

This commit is contained in:
Filippo Berto 2023-08-15 18:33:34 +02:00
parent 40032f7fd9
commit 7459ae0e96
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
27 changed files with 222 additions and 230 deletions

View file

@ -1,9 +1,11 @@
{ pkgs, ... }:
let
package = with pkgs.dwarf-fortress-packages;
dwarf-fortress-full.override {
theme = themes.ironhand;
enableFPS = true;
};
dfp = pkgs.dwarf-fortress-packages;
package = dfp.dwarf-fortress-full.override {
theme = dfp.themes.ironhand;
enableFPS = true;
};
in
{ home.packages = [ package ]; }
{
home.packages = [ package ];
}