diff options
author | Franck Cuny <franck@fcuny.net> | 2022-03-04 07:06:36 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-03-04 07:06:36 -0800 |
commit | 03a2fabf3fc6debfd6ca8ad89fdcc6b0b9ce1407 (patch) | |
tree | 4b9562ac61984dbef8ac3b1cc9b39895b43da064 | |
parent | ssh: new module, and load it for my user (diff) | |
download | world-03a2fabf3fc6debfd6ca8ad89fdcc6b0b9ce1407.tar.gz |
nix: format the module
-rw-r--r-- | users/fcuny/devel/default.nix | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/users/fcuny/devel/default.nix b/users/fcuny/devel/default.nix index 5a12093..53049ea 100644 --- a/users/fcuny/devel/default.nix +++ b/users/fcuny/devel/default.nix @@ -1,14 +1,7 @@ -{ config, lib, pkgs, ...}: +{ config, lib, pkgs, ... }: { - imports = [ - ./go.nix - ./python.nix - ]; + imports = [ ./go.nix ./python.nix ]; - home.packages = with pkgs; [ - flyctl - hugo - rnix-lsp - ]; + home.packages = with pkgs; [ flyctl hugo rnix-lsp ]; } |