diff --git a/configuration.nix b/configuration.nix index 88ed91d..258c94b 100644 --- a/configuration.nix +++ b/configuration.nix @@ -6,7 +6,7 @@ { imports = [ # Include the results of the hardware scan. - dankMaterialShell.nixosModules.greeter + inputs.dankMaterialShell.nixosModules.greeter /etc/nixos/hardware-configuration.nix ]; diff --git a/flake.nix b/flake.nix index c1ead2f..93823cc 100644 --- a/flake.nix +++ b/flake.nix @@ -30,11 +30,11 @@ in { nixosConfigurations = { nixos = nixpkgs.lib.nixosSystem { - specialArgs = { inherit system niri dankMaterialShell; }; + specialArgs = { inherit system inputs; }; modules = [ ./configuration.nix home-manager.nixosModules.home-manager { - home-manager.extraSpecialArgs = { inherit niri dankMaterialShell; }; + home-manager.extraSpecialArgs = { inherit inputs; }; home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; home-manager.users.bangae1 = import ./hm/home.nix; diff --git a/hm/config.kdl b/hm/config.kdl index 94678ce..b832193 100644 --- a/hm/config.kdl +++ b/hm/config.kdl @@ -14,7 +14,7 @@ output "Virtual-1" { } cursor { -// xcursor-theme "Transparent" + xcursor-theme "Transparent" xcursor-size 25 //hide-when-typing diff --git a/hm/home.nix b/hm/home.nix index dd5674f..24798a9 100644 --- a/hm/home.nix +++ b/hm/home.nix @@ -1,10 +1,10 @@ -{ config, pkgs, lib, niri, dankMaterialShell, ... }: +{ config, pkgs, lib, inputs, ... }: { imports = [ - niri.homeModules.niri - dankMaterialShell.homeModules.dankMaterialShell.default - dankMaterialShell.homeModules.dankMaterialShell.niri + inputs.niri.homeModules.niri + inputs.dankMaterialShell.homeModules.dankMaterialShell.default + inputs.dankMaterialShell.homeModules.dankMaterialShell.niri ]; programs.niri = { @@ -67,14 +67,11 @@ force = true; }; - home.file.".local/share/icons/Transparent" = { - source = builtins.path { - path = ./Transparent; - }; + home.file.".icons/Transparnet" = { + source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/niri/hm/Transparent"; recursive = true; force = true; }; - # programs.zsh.enable = false; # programs.fish.enable = true; }