mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
15 lines
259 B
Nix
15 lines
259 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
xdg.configFile."rustfmt/rustfmt.toml".text = ''
|
|
# SPDX-FileCopyrightText: V <v@anomalous.eu>
|
|
# SPDX-License-Identifier: OSL-3.0
|
|
|
|
hard_tabs = true
|
|
imports_granularity = "One"
|
|
'';
|
|
|
|
home.packages = with pkgs; [
|
|
rustfmt
|
|
];
|
|
}
|