Compare commits
2 commits
87de39d257
...
8c747172a7
Author | SHA1 | Date | |
---|---|---|---|
|
8c747172a7 | ||
|
bf8e65ebe3 |
7
common/fonts.nix
Normal file
7
common/fonts.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
fonts.packages = with pkgs; [
|
||||
corefonts
|
||||
];
|
||||
}
|
|
@ -4,5 +4,6 @@
|
|||
imports = [
|
||||
# TODO: nix-ify other parts of GNOME config
|
||||
./appearance.nix
|
||||
./keyboard.nix
|
||||
];
|
||||
}
|
||||
|
|
15
home/gnome/keyboard.nix
Normal file
15
home/gnome/keyboard.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
# { config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
dconf = {
|
||||
enable = true;
|
||||
settings = {
|
||||
"org/gnome/desktop/wm/keybindings" = {
|
||||
# These are largely useless on most normal systems
|
||||
# and conflict with VS Code's default keybinds for "Copy Line Up/Down"
|
||||
move-to-workspace-up = [ ];
|
||||
move-to-workspace-down = [ ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -5,6 +5,7 @@
|
|||
[
|
||||
./hardware-configuration.nix
|
||||
./home.nix
|
||||
../../common/fonts.nix
|
||||
../../common/steam.nix
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue