diff --git a/homes/nathan/home-manager/dotfiles/hypr/main.conf b/homes/nathan/home-manager/dotfiles/hypr/main.conf index 7a37961..f639c7e 100644 --- a/homes/nathan/home-manager/dotfiles/hypr/main.conf +++ b/homes/nathan/home-manager/dotfiles/hypr/main.conf @@ -93,6 +93,9 @@ master { new_status = "master" } +scrolling { +} + misc { disable_hyprland_logo = false disable_splash_rendering = true diff --git a/system/default.nix b/system/default.nix index c4fb557..d20ee13 100644 --- a/system/default.nix +++ b/system/default.nix @@ -1,6 +1,6 @@ -{ ... }: { +{ inputs, ... }: { - flake.nixosModules.default = { config, lib, pkgs, nixpkgs, ... }: { + flake.nixosModules.default = { config, lib, pkgs, ... }: { options.sysconfig = with lib; { host = mkOption { @@ -26,7 +26,7 @@ networking.hostName = lib.mkDefault config.sysconfig.host; nix = { - nixPath = [ "nixpkgs=${nixpkgs}" ]; + nixPath = [ "nixpkgs=${inputs.nixpkgs}" ]; channel.enable = false; settings = { experimental-features = [ "nix-command" "flakes" ];