aboutsummaryrefslogtreecommitdiff
path: root/config/nickel.nix
diff options
context:
space:
mode:
Diffstat (limited to 'config/nickel.nix')
-rw-r--r--config/nickel.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/config/nickel.nix b/config/nickel.nix
deleted file mode 100644
index 5e62fc6..0000000
--- a/config/nickel.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ config, pkgs, lib, ... }:
-with builtins // lib;
-{
- nickel = {
- enable = true;
-
- menu.item = {
- settings = [
- {
- location = "main";
- label = "IP Address";
- action = "cmd_output";
- arg = [
- "500"
- "/sbin/ifconfg | /usr/bin/awk '/inet addr/{print substr($2,6)}'"
- ];
- }
- ];
- };
- };
-}