26 lines
453 B
Nix
26 lines
453 B
Nix
rec {
|
|
default = {
|
|
browser = "zen";
|
|
calculator = "gnome-calculator";
|
|
fileManager = "nautilus";
|
|
imageViewer = "loupe";
|
|
lockScreen = "hyprlock";
|
|
terminal = "kitty";
|
|
};
|
|
|
|
dir = {
|
|
home = "/home/${username}";
|
|
pictures = "${dir.home}/Pictures";
|
|
};
|
|
|
|
keymaps = {
|
|
layout = "gb,no";
|
|
options = "grp:alt_shift_toggle"; # Toggle using ALT + SHIFT
|
|
};
|
|
|
|
# Empty matches all
|
|
monitor1 = "";
|
|
|
|
username = "martin";
|
|
}
|