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 = [ imports = [
# Include the results of the hardware scan. # Include the results of the hardware scan.
dankMaterialShell.nixosModules.greeter inputs.dankMaterialShell.nixosModules.greeter
/etc/nixos/hardware-configuration.nix /etc/nixos/hardware-configuration.nix
]; ];

View File

@@ -30,11 +30,11 @@
in { in {
nixosConfigurations = { nixosConfigurations = {
nixos = nixpkgs.lib.nixosSystem { nixos = nixpkgs.lib.nixosSystem {
specialArgs = { inherit system niri dankMaterialShell; }; specialArgs = { inherit system inputs; };
modules = [ modules = [
./configuration.nix ./configuration.nix
home-manager.nixosModules.home-manager { home-manager.nixosModules.home-manager {
home-manager.extraSpecialArgs = { inherit niri dankMaterialShell; }; home-manager.extraSpecialArgs = { inherit inputs; };
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.users.bangae1 = import ./hm/home.nix; home-manager.users.bangae1 = import ./hm/home.nix;

View File

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

View File

@@ -1,10 +1,10 @@
{ config, pkgs, lib, niri, dankMaterialShell, ... }: { config, pkgs, lib, inputs, ... }:
{ {
imports = [ imports = [
niri.homeModules.niri inputs.niri.homeModules.niri
dankMaterialShell.homeModules.dankMaterialShell.default inputs.dankMaterialShell.homeModules.dankMaterialShell.default
dankMaterialShell.homeModules.dankMaterialShell.niri inputs.dankMaterialShell.homeModules.dankMaterialShell.niri
]; ];
programs.niri = { programs.niri = {
@@ -67,14 +67,11 @@
force = true; force = true;
}; };
home.file.".local/share/icons/Transparent" = { home.file.".icons/Transparnet" = {
source = builtins.path { source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/niri/hm/Transparent";
path = ./Transparent;
};
recursive = true; recursive = true;
force = true; force = true;
}; };
# programs.zsh.enable = false; # programs.zsh.enable = false;
# programs.fish.enable = true; # programs.fish.enable = true;
} }