feat: tmux continues

ran fmt
This commit is contained in:
s-prechtl 2024-09-22 11:48:49 +02:00
parent 4c7129247e
commit 7c54039636
16 changed files with 36 additions and 43 deletions

View file

@ -1,6 +1,4 @@
{
...
}: {
{...}: {
programs.alacritty = {
enable = true;
settings = {

View file

@ -0,0 +1,3 @@
{...}: {
services.blueman-applet.enable = true;
}

View file

@ -1,6 +1,4 @@
{
...
}: {
{...}: {
programs.btop = {
enable = true;
settings = {

View file

@ -1,6 +1,4 @@
{
...
}: {
{...}: {
programs.git = {
enable = true;
delta.enable = true;

View file

@ -1,6 +1,4 @@
{
...
}: {
{...}: {
imports = [
./hyprlock.nix
./hyprpaper.nix

View file

@ -1,6 +1,4 @@
{
...
}: {
{...}: {
programs.hyprlock = {
enable = true;
settings = {

View file

@ -1,6 +1,4 @@
{
...
}: {
{...}: {
services.hyprpaper = {
enable = true;
settings = {

View file

@ -1,6 +1,4 @@
{
...
}: {
{...}: {
services.nextcloud-client = {
enable = true;
startInBackground = true;

View file

@ -1,6 +1,4 @@
{
...
}: {
{...}: {
programs.password-store = {
enable = true;
settings = {

View file

@ -1,6 +1,4 @@
{
pkgs, ...
}: {
{pkgs, ...}: {
programs.tmux = {
enable = true;
baseIndex = 1;
@ -17,12 +15,23 @@
vim-tmux-navigator
{
plugin = resurrect;
extraConfig = "set -g @ressurect-strategy-nvim 'session'";
extraConfig = ''
set -g @resurrect-strategy-vim 'session'
set -g @resurrect-strategy-nvim 'session'
set -g @resurrect-capture-pane-contents 'on'
'';
}
{
plugin = continuum;
extraConfig = ''
set -g @continuum-restore 'on'
set -g @continuum-boot 'on'
set -g @continuum-save-interval '10'
'';
}
];
extraConfig = ''
set -as terminal-features ",xterm-256color:RGB"
'';
set -as terminal-features ",xterm-256color:RGB"
'';
};
}

View file

@ -1,6 +1,4 @@
{
...
}: {
{...}: {
programs.waybar = {
enable = true;
settings = {

View file

@ -1,6 +1,4 @@
{
...
}: {
{...}: {
programs.wofi = {
enable = true;
settings = {

View file

@ -1,6 +1,4 @@
{
...
}: {
{...}: {
programs.eza.enable = true;
programs.zsh = {
enable = true;

View file

@ -23,7 +23,7 @@ in {
users.users.${cfg.username} = {
isNormalUser = true;
initialPassword = "12345";
extraGroups = [ "docker" "input" "networkmanager" "wheel"];
extraGroups = ["docker" "input" "networkmanager" "wheel"];
description = "Stefan";
shell = pkgs.zsh;
};