diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2025-01-01 03:45:58 +0200 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2025-01-01 03:45:58 +0200 |
commit | 71b70ecb3a3772c60948a433ee1dead366cef404 (patch) | |
tree | 728f1c85c1ea2e582f63b05568cf88e5a8a18d91 /common | |
parent | 528ef530c041bb45d444d4f1cd48058056f307b2 (diff) | |
download | nixos-configuration-71b70ecb3a3772c60948a433ee1dead366cef404.tar.gz nixos-configuration-71b70ecb3a3772c60948a433ee1dead366cef404.tar.bz2 nixos-configuration-71b70ecb3a3772c60948a433ee1dead366cef404.zip |
chore: attach binds to common variables filefeature-commons
Diffstat (limited to 'common')
-rw-r--r-- | common/variables.nix | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/common/variables.nix b/common/variables.nix index f4af0f1..ddada2f 100644 --- a/common/variables.nix +++ b/common/variables.nix @@ -10,7 +10,11 @@ in { # Type definitions for nix variables used in this configuration options = with lib; with types; { - defaultApplications = {fileManager = mkOption {type = str;};}; + defaultApplications = { + fileManager = mkOption {type = str;}; + appLauncher = mkOption {type = str;}; + terminal = mkOption {type = str;}; + }; myWallPaperPath = mkOption {type = path;}; myUserName = mkOption {type = str;}; myHostName = mkOption {type = str;}; @@ -45,6 +49,10 @@ in { "${pkgs.pa-notify}/bin/pa-notify" "${pkgs.networkmanagerapplet}/bin/nm-applet" ]; - defaultApplications.fileManager = "${pkgs.nemo}/bin/nemo"; + defaultApplications = { + terminal = "${pkgs.foot}/bin/footclient"; + fileManager = "${pkgs.nemo}/bin/nemo"; + appLauncher = "${pkgs.walker}/bin/walker"; + }; }; } |