Compare commits

..

No commits in common. "d4cd494b5e1f4ccebaea4d7b3803cc5621dddf57" and "d0eab78ad9c0b87d7e1a438be077e2ac32c0b81c" have entirely different histories.

4 changed files with 2 additions and 38 deletions

View file

@ -9,18 +9,6 @@ let
self.overlays.default
inputs.niri.overlays.niri
inputs.lix-module.overlays.lixFromNixpkgs
(final: prev: {
tmux = prev.tmux.overrideAttrs (old: rec {
version = "3.5";
src = prev.fetchFromGitHub {
owner = "tmux";
repo = "tmux";
rev = version;
hash = "sha256-8CRZj7UyBhuB5QO27Y+tHG62S/eGxPOHWrwvh1aBqq0=";
};
});
})
];
});

View file

@ -14,9 +14,9 @@ in
config = lib.mkIf cfg.enable {
programs.tmux = {
enable = true;
shell = getExe (if macos then pkgs.zsh else pkgs.fish);
# shell = getExe (if macos then pkgs.zsh else pkgs.fish);
# shell = if macos then "/bin/zsh" else (getExe pkgs.fish);
# shell = getExe pkgs.fish;
shell = getExe pkgs.fish;
mouse = true;
baseIndex = 1;
terminal = "screen-256color";

View file

@ -1,8 +1,4 @@
{ pkgs, lib, self, ... }: {
imports = [
./darwin-modules/pam.nix
];
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages = [ ];
@ -60,7 +56,6 @@
];
security.pam.enableSudoTouchIdAuth = true;
security.pam.enableSudoTouchIdReattach = true;
users.users.zynh = {
name = "zynh";

View file

@ -19,25 +19,6 @@
direnv.enable = true;
};
# nixpkgs.overlays = [
# (final: prev: {
# tmux = prev.tmux.overrideAttrs (old: rec {
# version = "3.5";
# src = prev.fetchFromGitHub {
# owner = "tmux";
# repo = "tmux";
# rev = version;
# hash = "sha256-8CRZj7UyBhuB5QO27Y+tHG62S/eGxPOHWrwvh1aBqq0=";
# };
# });
# })
# ];
# programs.tmux.extraConfig = ''
# set -gu default-command
# set -g default-shell "$SHELL"
# '';
programs.alacritty.settings = {
font.size = lib.mkForce 16.0;
window.opacity = lib.mkForce 0.94;