This commit is contained in:
2025-12-02 09:56:16 +09:00
parent ec7280f101
commit c8d5c579a6
4 changed files with 10 additions and 13 deletions

View File

@@ -6,7 +6,7 @@
{
imports = [
# Include the results of the hardware scan.
dankMaterialShell.nixosModules.greeter
inputs.dankMaterialShell.nixosModules.greeter
/etc/nixos/hardware-configuration.nix
];

View File

@@ -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;

View File

@@ -14,7 +14,7 @@ output "Virtual-1" {
}
cursor {
// xcursor-theme "Transparent"
xcursor-theme "Transparent"
xcursor-size 25
//hide-when-typing

View File

@@ -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;
}