diff options
author | Yves Fischer <yvesf+git@xapek.org> | 2022-08-25 22:55:03 +0200 |
---|---|---|
committer | Yves Fischer <yvesf+git@xapek.org> | 2022-08-25 22:55:03 +0200 |
commit | efc84d128aa88a49516abf3e593ea41753f57729 (patch) | |
tree | 7cf53a9745c1781dea80f073a7f5166e372d49f9 /flake.nix | |
parent | 64f56e8acd6913a60dcad7e6203f6984b0d01ee9 (diff) | |
download | batteriewarner-efc84d128aa88a49516abf3e593ea41753f57729.tar.gz batteriewarner-efc84d128aa88a49516abf3e593ea41753f57729.zip |
apply nixpkgs-fmt on .nix files
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,10 +1,10 @@ { inputs.nixpkgs.url = "nixpkgs/nixos-20.09"; outputs = { self, nixpkgs }: - with import nixpkgs { system = "x86_64-linux"; }; - { - defaultPackage.x86_64-linux = callPackage ./. {}; - nixosModule = { config }: { imports = [ ./module.nix ]; }; - }; + with import nixpkgs { system = "x86_64-linux"; }; + { + defaultPackage.x86_64-linux = callPackage ./. { }; + nixosModule = { config }: { imports = [ ./module.nix ]; }; + }; } |