diff --git a/hosts/vali/mars/configuration.nix b/hosts/vali/mars/configuration.nix index 197e070..753c595 100644 --- a/hosts/vali/mars/configuration.nix +++ b/hosts/vali/mars/configuration.nix @@ -1,4 +1,4 @@ -{ config, inputs, pkgs, lib, ... }: { +{ pkgs, ... }: { # allow unfree packages nixpkgs.config.allowUnfree = true; # Time Zone diff --git a/hosts/vali/mars/hyprland/hyprland.nix b/hosts/vali/mars/hyprland/hyprland.nix index 0c3a58c..07378bc 100644 --- a/hosts/vali/mars/hyprland/hyprland.nix +++ b/hosts/vali/mars/hyprland/hyprland.nix @@ -116,8 +116,6 @@ in { gaps_in = 0; gaps_out = 0; border_size = 2; - #"col.active_border" = "0xFFF5C2E7"; - #"col.inactive_border" = "0xFF45475A"; }; decoration = { @@ -133,10 +131,6 @@ in { shadow_ignore_window = 1; shadow_offset = "2 4"; shadow_scale = 1; - #active_opacity = 1; - #inactive_opacity = 1; - - #"col.shadow" = "0xAF1E1E2E"; }; bezier = [ diff --git a/hosts/vali/mars/programs.nix b/hosts/vali/mars/programs.nix index 538a5cd..ff5dbf7 100644 --- a/hosts/vali/mars/programs.nix +++ b/hosts/vali/mars/programs.nix @@ -1,8 +1,7 @@ -{ config, inputs, pkgs, ... }: +{ inputs, pkgs, ... }: let fenix = inputs.fenix.packages.${pkgs.system}; nixpkgs-wayland = inputs.nixpkgs-wayland.packages.${pkgs.system}; - username = config.modules.other.system.username; in { environment.systemPackages = with pkgs; [ alsa-utils @@ -100,11 +99,6 @@ in { weechat wget wireguard-tools - xclip - xfce.thunar - xorg.libX11.dev - xorg.libXft - xorg.libXinerama xournalpp yt-dlp zapzap diff --git a/modules/cli/nh.nix b/modules/cli/nh.nix index 4df499c..0ab66f9 100644 --- a/modules/cli/nh.nix +++ b/modules/cli/nh.nix @@ -1,8 +1,6 @@ -{ pkgs, lib, config, callPackage, ... }: +{ lib, config, ... }: with lib; -let - username = config.modules.other.system.username; - cfg = config.modules.programs.nh; +let cfg = config.modules.programs.nh; in { options.modules.programs.nh.enable = mkEnableOption "nh"; diff --git a/modules/tui/helix.nix b/modules/tui/helix.nix index 03a7489..cb34e4b 100644 --- a/modules/tui/helix.nix +++ b/modules/tui/helix.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, inputs, ... }: +{ config, lib, pkgs, ... }: with lib; let cfg = config.modules.programs.helix;