2019-09-11 17:17:56 +04:00
|
|
|
{ pkgs, lib, config, ... }: {
|
|
|
|
|
|
|
|
# programs.ssh.askPassword = "${pkgs.plasma5.ksshaskpass}/bin/ksshaskpass";
|
|
|
|
environment.sessionVariables = {
|
|
|
|
EDITOR = config.defaultApplications.editor.cmd;
|
|
|
|
VISUAL = config.defaultApplications.editor.cmd;
|
|
|
|
LESS = "-asrRix8";
|
|
|
|
NIX_AUTO_RUN = "1";
|
|
|
|
};
|
2019-09-26 02:46:10 +04:00
|
|
|
|
2019-09-11 17:17:56 +04:00
|
|
|
services.atd.enable = true;
|
|
|
|
home-manager.users.alukard = {
|
|
|
|
xdg.enable = true;
|
|
|
|
|
|
|
|
services.udiskie.enable = true;
|
|
|
|
programs.git = {
|
|
|
|
enable = true;
|
2019-10-10 14:28:33 +04:00
|
|
|
package = pkgs.git-with-libsecret;
|
2019-09-11 17:17:56 +04:00
|
|
|
userEmail = "alukard.develop@gmail.com";
|
|
|
|
userName = "Dmitriy Holkin";
|
|
|
|
};
|
|
|
|
news.display = "silent";
|
|
|
|
# programs.command-not-found = {
|
|
|
|
# enable = true;
|
|
|
|
# dbPath = ../../imports/programs.sqlite;
|
|
|
|
# };
|
|
|
|
home.keyboard = {
|
|
|
|
options = [ "grp:win_space_toogle" ];
|
|
|
|
layout = "us,ru";
|
|
|
|
};
|
2019-09-22 13:35:49 +04:00
|
|
|
home.file.".icons/default" = {
|
|
|
|
source = "${pkgs.bibata-cursors}/share/icons/Bibata_Oil";
|
|
|
|
};
|
2019-09-11 17:17:56 +04:00
|
|
|
systemd.user.startServices = true;
|
|
|
|
};
|
|
|
|
}
|