aboutsummaryrefslogtreecommitdiff
path: root/modules/default.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-12-09 09:15:23 -0800
committerFranck Cuny <franck@fcuny.net>2023-12-09 09:15:23 -0800
commit543fcc38c9c48349d6988b1ace119f0cef2d6efa (patch)
treeae8174b09797fd19e365f60bf25a9d20b222c855 /modules/default.nix
parentinstall kind / configure the dock (diff)
downloadinfra-543fcc38c9c48349d6988b1ace119f0cef2d6efa.tar.gz
delete even more unused configurations
Diffstat (limited to 'modules/default.nix')
-rw-r--r--modules/default.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/modules/default.nix b/modules/default.nix
deleted file mode 100644
index b248c51..0000000
--- a/modules/default.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ lib, ... }:
-
-{
- imports = [ ./system ./services ./secrets ];
-
- options.my = with lib; {
- user = {
- name = mkOption {
- type = types.str;
- default = "fcuny";
- example = "franck";
- description = "my username";
- };
- };
- };
-}