aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/variables.nix12
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";
+ };
};
}