Compare commits

...

2 commits

4 changed files with 24 additions and 0 deletions

7
common/fonts.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
fonts.packages = with pkgs; [
corefonts
];
}

View file

@ -4,5 +4,6 @@
imports = [ imports = [
# TODO: nix-ify other parts of GNOME config # TODO: nix-ify other parts of GNOME config
./appearance.nix ./appearance.nix
./keyboard.nix
]; ];
} }

15
home/gnome/keyboard.nix Normal file
View 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 = [ ];
};
};
};
}

View file

@ -5,6 +5,7 @@
[ [
./hardware-configuration.nix ./hardware-configuration.nix
./home.nix ./home.nix
../../common/fonts.nix
../../common/steam.nix ../../common/steam.nix
]; ];