From d6e9904bfc120a7c3b1446f12407a5dbf10bb5dc Mon Sep 17 00:00:00 2001 From: Nathan Date: Fri, 6 Mar 2026 21:32:57 -0600 Subject: [PATCH] test --- homes/nathan/home-manager/dotfiles/hypr/main.conf | 3 +++ system/default.nix | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) 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" ];