aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/devel/default.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-03-04 07:06:36 -0800
committerFranck Cuny <franck@fcuny.net>2022-03-04 07:06:36 -0800
commit03a2fabf3fc6debfd6ca8ad89fdcc6b0b9ce1407 (patch)
tree4b9562ac61984dbef8ac3b1cc9b39895b43da064 /users/fcuny/devel/default.nix
parentssh: new module, and load it for my user (diff)
downloadinfra-03a2fabf3fc6debfd6ca8ad89fdcc6b0b9ce1407.tar.gz
nix: format the module
Diffstat (limited to '')
-rw-r--r--users/fcuny/devel/default.nix13
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 ];
}