diff options
-rw-r--r-- | modules/hosts/T495/configuration.nix | 2 | ||||
-rw-r--r-- | modules/hosts/T495/home.nix | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/hosts/T495/configuration.nix b/modules/hosts/T495/configuration.nix index 3468622..9983a21 100644 --- a/modules/hosts/T495/configuration.nix +++ b/modules/hosts/T495/configuration.nix @@ -4,7 +4,7 @@ ./wg.nix ]; networking.hostName = "T495"; - config.grub.mode = "efi"; + grub.mode = "efi"; environment.systemPackages = with pkgs; [ input-leap diff --git a/modules/hosts/T495/home.nix b/modules/hosts/T495/home.nix index cf86990..344678c 100644 --- a/modules/hosts/T495/home.nix +++ b/modules/hosts/T495/home.nix @@ -6,8 +6,8 @@ wallpapers.enable = true; home.file.input-leap-config = { - source = ./resources/input-leap/; + source = ./resources/input-leap; recursive = true; - target = ./config; - } + target = "./config"; + }; } |