Compare commits
4 Commits
811011d6d6
...
445f70a5ec
| Author | SHA1 | Date | |
|---|---|---|---|
| 445f70a5ec | |||
| eb9d3f2d16 | |||
| 66f6ae06d7 | |||
| 08868fc241 |
@@ -1,4 +1,5 @@
|
||||
{
|
||||
myConfig,
|
||||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
@@ -22,7 +23,7 @@
|
||||
xdg.terminal-exec = {
|
||||
enable = true;
|
||||
settings = {
|
||||
default = ["ghostty.desktop"];
|
||||
default = myConfig.termianl.default;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
bindd =
|
||||
[
|
||||
# essential
|
||||
"SUPER, Return, Open Terminal, exec, ghostty" # FIXME: must be using xdg-open
|
||||
"SUPER, Return, Open Terminal, exec, uwsm app -- xdg-terminal-exec"
|
||||
"SUPER, Q, Kill active, killactive"
|
||||
|
||||
# move focus
|
||||
@@ -17,7 +17,7 @@
|
||||
"SUPER SHIFT, F, Toggle Maximized Fullscreen, fullscreen, 1"
|
||||
|
||||
# apps
|
||||
"SUPER, W, Open browser, exec, firefox" # FIXME: must be xdg-open
|
||||
"SUPER, W, Open browser, exec, uwsm app -- xdg-open https://duckduckgo.com" # FIXME: must be xdg-open
|
||||
|
||||
# [Workspaces] Toggle between most recent workspaces
|
||||
"SUPER, Tab, Cycle workspaces, workspace, previous"
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
'';
|
||||
};
|
||||
terminal = {
|
||||
default = ["ghostty.desktop"];
|
||||
aliases = {
|
||||
update = "sudo nixos-rebuild switch --flake ~/.config/nixos-new/#hakase";
|
||||
};
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{pkgs, ...}: {
|
||||
imports = [
|
||||
../../system/time.nix
|
||||
../../system/boot.nix
|
||||
../../system/amd.nix
|
||||
../../system/hardware.nix
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
{myConfig, ...}: {
|
||||
time.timeZone = myConfig.nixos.timezone;
|
||||
}
|
||||
Reference in New Issue
Block a user