33 lines
933 B
Nix
33 lines
933 B
Nix
{ 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";
|
|
};
|
|
services.atd.enable = true;
|
|
home-manager.users.alukard = {
|
|
xdg.enable = true;
|
|
|
|
services.udiskie.enable = true;
|
|
programs.git = {
|
|
enable = true;
|
|
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";
|
|
};
|
|
# home.file.".icons/default".source ="${pkgs.breeze-qt5}/share/icons/breeze_cursors";
|
|
systemd.user.startServices = true;
|
|
};
|
|
}
|