more format stuff, removed unnecessary programs

This commit is contained in:
Charlie Root 2024-05-15 00:37:31 +02:00
commit fa40d31624
5 changed files with 5 additions and 19 deletions

View file

@ -1,4 +1,4 @@
{ config, inputs, pkgs, lib, ... }: { { pkgs, ... }: {
# allow unfree packages # allow unfree packages
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
# Time Zone # Time Zone

View file

@ -116,8 +116,6 @@ in {
gaps_in = 0; gaps_in = 0;
gaps_out = 0; gaps_out = 0;
border_size = 2; border_size = 2;
#"col.active_border" = "0xFFF5C2E7";
#"col.inactive_border" = "0xFF45475A";
}; };
decoration = { decoration = {
@ -133,10 +131,6 @@ in {
shadow_ignore_window = 1; shadow_ignore_window = 1;
shadow_offset = "2 4"; shadow_offset = "2 4";
shadow_scale = 1; shadow_scale = 1;
#active_opacity = 1;
#inactive_opacity = 1;
#"col.shadow" = "0xAF1E1E2E";
}; };
bezier = [ bezier = [

View file

@ -1,8 +1,7 @@
{ config, inputs, pkgs, ... }: { inputs, pkgs, ... }:
let let
fenix = inputs.fenix.packages.${pkgs.system}; fenix = inputs.fenix.packages.${pkgs.system};
nixpkgs-wayland = inputs.nixpkgs-wayland.packages.${pkgs.system}; nixpkgs-wayland = inputs.nixpkgs-wayland.packages.${pkgs.system};
username = config.modules.other.system.username;
in { in {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
alsa-utils alsa-utils
@ -100,11 +99,6 @@ in {
weechat weechat
wget wget
wireguard-tools wireguard-tools
xclip
xfce.thunar
xorg.libX11.dev
xorg.libXft
xorg.libXinerama
xournalpp xournalpp
yt-dlp yt-dlp
zapzap zapzap

View file

@ -1,8 +1,6 @@
{ pkgs, lib, config, callPackage, ... }: { lib, config, ... }:
with lib; with lib;
let let cfg = config.modules.programs.nh;
username = config.modules.other.system.username;
cfg = config.modules.programs.nh;
in { in {
options.modules.programs.nh.enable = mkEnableOption "nh"; options.modules.programs.nh.enable = mkEnableOption "nh";

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, inputs, ... }: { config, lib, pkgs, ... }:
with lib; with lib;
let let
cfg = config.modules.programs.helix; cfg = config.modules.programs.helix;