konawall package removal, rustfmt override

This commit is contained in:
kat witch 2021-08-22 00:20:20 +01:00
parent ee6b3cd875
commit df4a036ef0
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
7 changed files with 498 additions and 30 deletions

View file

@ -2,6 +2,7 @@
{
imports = [
./rustfmt.nix
./packages.nix
./cookiecutter.nix
./emacs.nix

View file

@ -0,0 +1,15 @@
{ 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
];
}