fix: fsel problems
This commit is contained in:
+3
-2
@@ -1,14 +1,15 @@
|
|||||||
{
|
{
|
||||||
pkgs,
|
pkgs,
|
||||||
inputs,
|
inputs,
|
||||||
|
myConfig,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
home.packages = [
|
home.packages = [
|
||||||
inputs.fsel.packages.${pkgs.system}.default # FIXME: does not have its own homeManagerModules
|
inputs.fsel.packages.${pkgs.system}.default # FIXME: does not have its own homeManagerModules
|
||||||
pkgs.cclip
|
pkgs.wl-clipboard
|
||||||
];
|
];
|
||||||
home.file.".config/fsel/config.toml".text = ''
|
home.file.".config/fsel/config.toml".text = ''
|
||||||
[exec]
|
[exec]
|
||||||
terminal_launcher = "${pkgs.ghostty}/bin/ghostty -e"
|
terminal_launcher = "${myConfig.terminal.default} -e"
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
xdg.terminal-exec = {
|
xdg.terminal-exec = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
default = myConfig.terminal.default;
|
default = ["${myConfig.terminal.default}"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
# apps
|
# apps
|
||||||
"SUPER, W, Open Browser, exec, uwsm app -- firefox" # FIXME: must be xdg-open
|
"SUPER, W, Open Browser, exec, uwsm app -- firefox" # FIXME: must be xdg-open
|
||||||
"SUPER, SPACE, Open App Launcher, ghostty --title=launcher -e fsel"
|
"SUPER, SPACE, Open App Launcher, exec, ghostty --title=launcher -e fsel" # FIXME: pls make ghostty variable
|
||||||
|
|
||||||
# [Workspaces] Toggle between most recent workspaces
|
# [Workspaces] Toggle between most recent workspaces
|
||||||
"SUPER, Tab, Cycle workspaces, workspace, previous"
|
"SUPER, Tab, Cycle workspaces, workspace, previous"
|
||||||
|
|||||||
+1
-1
@@ -25,7 +25,7 @@
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
terminal = {
|
terminal = {
|
||||||
default = ["ghostty.desktop"];
|
default = "ghostty";
|
||||||
aliases = {
|
aliases = {
|
||||||
update = "sudo nixos-rebuild switch --flake ~/.config/nixos-new/#hakase";
|
update = "sudo nixos-rebuild switch --flake ~/.config/nixos-new/#hakase";
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user