diff --git a/common/fonts.nix b/common/fonts.nix deleted file mode 100644 index 1820cd9..0000000 --- a/common/fonts.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ config, lib, pkgs, ... }: - -{ - fonts.packages = with pkgs; [ - corefonts - ]; -} diff --git a/home/gnome/default.nix b/home/gnome/default.nix index 160be51..9e5a1ee 100644 --- a/home/gnome/default.nix +++ b/home/gnome/default.nix @@ -4,6 +4,5 @@ imports = [ # TODO: nix-ify other parts of GNOME config ./appearance.nix - ./keyboard.nix ]; } diff --git a/home/gnome/keyboard.nix b/home/gnome/keyboard.nix deleted file mode 100644 index 7950cb8..0000000 --- a/home/gnome/keyboard.nix +++ /dev/null @@ -1,15 +0,0 @@ -# { 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 = [ ]; - }; - }; - }; -} diff --git a/hosts/tohru/configuration.nix b/hosts/tohru/configuration.nix index 388c069..845a558 100644 --- a/hosts/tohru/configuration.nix +++ b/hosts/tohru/configuration.nix @@ -5,7 +5,6 @@ [ ./hardware-configuration.nix ./home.nix - ../../common/fonts.nix ../../common/steam.nix ];