modules: move style to nix/style

This is temporary, as we're going to get rid of that awkward style
module that was meant to be shared, but ended up being too specific to
my use-case. We just put it in a nix directory for now, as we will with
everything else. This will be refactored later to be mixed with the
relevant program's configuration.
This commit is contained in:
Anthony Rodriguez 2025-01-14 11:02:13 +01:00
parent bb55875491
commit 851024052d
Signed by: nezia
GPG key ID: EE3BE97C040A86CE
20 changed files with 4 additions and 1 deletions

View file

@ -1,6 +1,6 @@
{
imports = [
./style
./options
./nix
];
}

3
modules/nix/default.nix Normal file
View file

@ -0,0 +1,3 @@
{
imports = [./style];
}