Compare commits

..

3 Commits

Author SHA1 Message Date
John Lancaster
a928ddb959 ghostty window position 2026-02-16 17:32:22 -06:00
John Lancaster
3428e37a90 lf keybinding 2026-02-16 17:32:09 -06:00
John Lancaster
86125bbecb enabled xdg 2026-02-16 17:31:56 -06:00
3 changed files with 8 additions and 0 deletions

View File

@@ -2,6 +2,9 @@
flake.homeModules.files = { pkgs, ... }:
{
programs.lf.enable = true;
programs.lf.cmdKeybindings = {
"D" = "delete";
};
home.packages = with pkgs; [
gdu

View File

@@ -33,6 +33,9 @@
shell-integration-features = [ "no-title" "sudo" ];
gtk-single-instance = true;
window-position-x = 100;
window-position-y = 100;
window-padding-balance = true;
window-padding-x = 5;
window-padding-y = 5;

View File

@@ -3,6 +3,8 @@
flake.homeModules.desktop =
{ pkgs, ... } :
{
xdg.enable = true;
imports = with inputs.self.homeModules; [
rebuild
john