Compare commits

...

4 Commits

Author SHA1 Message Date
Alexandre LUCAZEAU 81fd413a21 ADD : configuration ssmtp for alerting 2023-01-11 19:53:16 +01:00
Alexandre LUCAZEAU a8d570e566 ADD VLC guake
ADD vlc and guake to i3 config for auto start
2023-01-10 19:37:28 +01:00
Alexandre LUCAZEAU db5f756775 Merge branch 'main' of git.atlanticaweb.fr:alexandre/nixos-config 2023-01-10 19:30:51 +01:00
Alexandre LUCAZEAU 79f0aed686 ADD HP Envy
FIX 22.11 homemanager conf
upgrade to 22.11
2022-12-20 13:26:50 +01:00
7 changed files with 29 additions and 4 deletions

View File

@ -12,6 +12,7 @@
./services.nix
./scanner.nix
../modules/common.nix
../modules/smtp.nix
./dev.nix
];
@ -118,7 +119,9 @@ fonts = {
# Enable CUPS to print documents.
# services.printing.enable = true;
services.avahi.enable = true;
services.printing.enable = true;
services.avahi.openFirewall = true;
# Enable sound.
sound.enable = true;
@ -144,7 +147,6 @@ lp" ];
home-manager
neovim
git
tmux
ncdu
rclone
borgbackup

View File

@ -11,7 +11,7 @@
"libsane-dsseries"
]);
services.printing.enable = true;
services.printing.drivers = [ pkgs.brlaser ];
services.printing.drivers = [ pkgs.brlaser pkgs.hplip ];
# Enable sane and brscan4 for DSP-7055
hardware = {
sane = {
@ -19,6 +19,7 @@
brscan4 = {
enable = true;
};
extraBackends = [ pkgs.hplipWithPlugin ];
};
};
}

View File

@ -142,3 +142,5 @@ assign [class="emacs"] $ws2
# programmes au démarrage
exec --no-startup-id nm-applet
exec --no-startup-id nextcloud
exec --no-startup-id vlc
exec --no-startup-id guake

View File

@ -11,7 +11,11 @@
./i3status.nix
./neovim.nix
./himalaya.nix
../../../modules/tmux.nix
];
home.stateVersion = "21.11";
home.username = "alexandre";
home.homeDirectory = "/home/alexandre";
home.keyboard = {
layout = "fr";
variant = "bepo";

View File

@ -3,7 +3,7 @@
jq
nextcloud-client
libreoffice
htop
btop
neomutt
notmuch
isync
@ -30,5 +30,7 @@
zlib
python3
nodejs
vlc
guake
];
}

13
modules/smtp.nix Normal file
View File

@ -0,0 +1,13 @@
{
programs.msmtp = {
enable = true;
accounts.default = {
auth = true;
tls = true;
host = "ssl0.ovh.net";
from = "supervision@pizzajoff.re";
user = "supervision@pizzajoff.re";
passwordeval = "cat /tmp/fic";
};
};
}

View File

@ -14,6 +14,7 @@
plugins = with pkgs; [
tmuxPlugins.better-mouse-mode
tmuxPlugins.sidebar
tmuxPlugins.nord
# tmuxPlugins.tmux-power
];