Compare commits

..

No commits in common. "b36187457ab06d88a3451ebeb949d3b275d9197d" and "ee61254dde456d88d95cb0fe18a8678fbc08ae8c" have entirely different histories.

9 changed files with 11 additions and 49 deletions

View File

@ -28,7 +28,6 @@
forwardX11 = true; forwardX11 = true;
}; };
}; };
sound.enable = true;
# hardware # hardware
hardware = { hardware = {
logitech = { logitech = {
@ -37,9 +36,9 @@
}; };
pulseaudio = { pulseaudio = {
enable = true; enable = true;
extraConfig ='' extraConfig = "
load-module module-switch-on-connect load-module module-switch-on-connect
''; ";
}; };
sane = { sane = {
enable = true; enable = true;
@ -100,7 +99,7 @@
unmanaged = [ "interface-name:ve-*" ]; unmanaged = [ "interface-name:ve-*" ];
}; };
firewall.enable = true; firewall.enable = true;
firewall.allowedTCPPorts = [ 24800 6600 ]; firewall.allowedTCPPorts = [ 24800 ];
}; };
i18n.defaultLocale = "fr_FR.UTF-8"; i18n.defaultLocale = "fr_FR.UTF-8";
@ -151,6 +150,7 @@
LESS = "--quit-if-one-screen --RAW-CONTROL-CHARS"; LESS = "--quit-if-one-screen --RAW-CONTROL-CHARS";
TERMINAL = "xfce4-terminal"; TERMINAL = "xfce4-terminal";
PRIVATE_BROWSER = "firefox -private"; PRIVATE_BROWSER = "firefox -private";
DEFAULT-WEB-BROWSER = "firefox";
}; };
users = { users = {

View File

@ -1,8 +0,0 @@
{ config, pkgs, ... }:
{
#configDir = "/home/alexandre/git/nixos-config/hosts/dell-5590/nixpkgs/";
programs.bat = {
enable = true;
# } // (import "${configDir}/bat");
} // (import "/home/alexandre/git/nixos-config/hosts/dell-5590/nixpkgs/bat");
}

View File

@ -1,7 +0,0 @@
{
config = {
decorations = "auto";
paging = "auto";
theme = "Nord";
};
}

View File

@ -143,7 +143,6 @@ exec --no-startup-id nm-applet
exec --no-startup-id nextcloud exec --no-startup-id nextcloud
exec --no-startup-id udiskie -t exec --no-startup-id udiskie -t
exec --no-startup-id blueman-applet exec --no-startup-id blueman-applet
exec --no-startup-id sublime-music
exec --no-startup-id i3-msg 'workspace $ws9; exec keepassxc;' exec --no-startup-id i3-msg 'workspace $ws9; exec keepassxc;'
#exec --no-startup-id i3-msg 'workspace $ws5; exec emacs;' #exec --no-startup-id i3-msg 'workspace $ws5; exec emacs;'
exec --no-startup-id i3-msg 'workspace $ws1; exec alacritty;' exec --no-startup-id i3-msg 'workspace $ws1; exec alacritty;'

View File

@ -112,10 +112,10 @@
sticky_history = "yes"; sticky_history = "yes";
# Maximum amount of notifications kept in history # Maximum amount of notifications kept in history
history_length = 3; history_length = 15;
# Display indicators for URLs (U) and actions (A). # Display indicators for URLs (U) and actions (A).
show_indicators = "yes"; show_indicators = "no";
# The height of a single line. If the height is smaller than the # The height of a single line. If the height is smaller than the
# font height, it will get raised to the font height. # font height, it will get raised to the font height.

View File

@ -9,7 +9,6 @@
./emacs.nix ./emacs.nix
./mails.nix ./mails.nix
./dunst.nix ./dunst.nix
./bat.nix
# ./redshift.nix # ./redshift.nix
# ../../../modules/neovim.nix # ../../../modules/neovim.nix
../../../modules/rust.nix ../../../modules/rust.nix
@ -22,10 +21,5 @@
"i3/config".source = ./configs/i3config; "i3/config".source = ./configs/i3config;
}; };
xsession.numlock.enable = true; xsession.numlock.enable = true;
home.file = {
".wezterm.lua" = {
source = ./configs/wezterm.lua;
};
};
} }

View File

@ -25,17 +25,10 @@
block = "cpu"; block = "cpu";
interval = 1; interval = 1;
} }
# {
# block = "load";
# interval = 1;
# format = "{1m}";
# }
{ {
block = "music"; block = "load";
buttons = [ "play" "next" ]; interval = 1;
max_width = 20; format = "{1m}";
dynamic_width = true;
hide_when_empty = true;
} }
{ {
block = "sound"; block = "sound";
@ -72,11 +65,6 @@
interval = 60; interval = 60;
format = "%a %d/%m %R"; format = "%a %d/%m %R";
} }
{
block = "pomodoro";
message = "Break !";
break_message = "Reprise";
}
]; ];
icons = "material-nf"; icons = "material-nf";
theme = "nord-dark"; theme = "nord-dark";

View File

@ -54,9 +54,5 @@
nmap nmap
udiskie udiskie
libnotify libnotify
sublime-music
wezterm
drawio
lsd
]; ];
} }

View File

@ -27,7 +27,7 @@
programs.fish.enable = true; programs.fish.enable = true;
programs.fish.shellAliases = { programs.fish.shellAliases = {
ll = "ls -l"; ll = "ls -l";
ls = "lsd"; ls = "exa";
vi = "nvim"; vi = "nvim";
vim = "nvim"; vim = "nvim";
}; };