Compare commits
6 Commits
ee61254dde
...
b36187457a
Author | SHA1 | Date |
---|---|---|
Alexandre LUCAZEAU | b36187457a | |
Alexandre LUCAZEAU | abc24031f5 | |
Alexandre LUCAZEAU | cf9f38d48b | |
Alexandre LUCAZEAU | 6463f2dbe0 | |
Alexandre LUCAZEAU | 4930abe1c3 | |
Alexandre LUCAZEAU | a19f4ee6e2 |
|
@ -28,6 +28,7 @@
|
||||||
forwardX11 = true;
|
forwardX11 = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
sound.enable = true;
|
||||||
# hardware
|
# hardware
|
||||||
hardware = {
|
hardware = {
|
||||||
logitech = {
|
logitech = {
|
||||||
|
@ -36,9 +37,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;
|
||||||
|
@ -99,7 +100,7 @@
|
||||||
unmanaged = [ "interface-name:ve-*" ];
|
unmanaged = [ "interface-name:ve-*" ];
|
||||||
};
|
};
|
||||||
firewall.enable = true;
|
firewall.enable = true;
|
||||||
firewall.allowedTCPPorts = [ 24800 ];
|
firewall.allowedTCPPorts = [ 24800 6600 ];
|
||||||
};
|
};
|
||||||
|
|
||||||
i18n.defaultLocale = "fr_FR.UTF-8";
|
i18n.defaultLocale = "fr_FR.UTF-8";
|
||||||
|
@ -150,7 +151,6 @@
|
||||||
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 = {
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
{ 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");
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
config = {
|
||||||
|
decorations = "auto";
|
||||||
|
paging = "auto";
|
||||||
|
theme = "Nord";
|
||||||
|
};
|
||||||
|
}
|
|
@ -143,6 +143,7 @@ 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;'
|
||||||
|
|
|
@ -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 = 15;
|
history_length = 3;
|
||||||
|
|
||||||
# Display indicators for URLs (U) and actions (A).
|
# Display indicators for URLs (U) and actions (A).
|
||||||
show_indicators = "no";
|
show_indicators = "yes";
|
||||||
|
|
||||||
# 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.
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
./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
|
||||||
|
@ -21,5 +22,10 @@
|
||||||
"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;
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -25,10 +25,17 @@
|
||||||
block = "cpu";
|
block = "cpu";
|
||||||
interval = 1;
|
interval = 1;
|
||||||
}
|
}
|
||||||
|
# {
|
||||||
|
# block = "load";
|
||||||
|
# interval = 1;
|
||||||
|
# format = "{1m}";
|
||||||
|
# }
|
||||||
{
|
{
|
||||||
block = "load";
|
block = "music";
|
||||||
interval = 1;
|
buttons = [ "play" "next" ];
|
||||||
format = "{1m}";
|
max_width = 20;
|
||||||
|
dynamic_width = true;
|
||||||
|
hide_when_empty = true;
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
block = "sound";
|
block = "sound";
|
||||||
|
@ -65,6 +72,11 @@
|
||||||
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";
|
||||||
|
|
|
@ -54,5 +54,9 @@
|
||||||
nmap
|
nmap
|
||||||
udiskie
|
udiskie
|
||||||
libnotify
|
libnotify
|
||||||
|
sublime-music
|
||||||
|
wezterm
|
||||||
|
drawio
|
||||||
|
lsd
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 = "exa";
|
ls = "lsd";
|
||||||
vi = "nvim";
|
vi = "nvim";
|
||||||
vim = "nvim";
|
vim = "nvim";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue