Compare commits
4 commits
1332404788
...
e09bb7e513
Author | SHA1 | Date | |
---|---|---|---|
Antoine Martin | e09bb7e513 | ||
Antoine Martin | 2477807458 | ||
Antoine Martin | ae47ba3b41 | ||
Antoine Martin | abcf14ba98 |
|
@ -23,7 +23,7 @@ in {
|
||||||
programs.gnupg.agent = {
|
programs.gnupg.agent = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableSSHSupport = true;
|
enableSSHSupport = true;
|
||||||
pinentryFlavor = "gnome3";
|
pinentryFlavor = "qt";
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
gnumake
|
gnumake
|
||||||
gnupg
|
gnupg
|
||||||
kakoune
|
kakoune
|
||||||
pinentry-gnome
|
pinentry-qt
|
||||||
python3
|
python3
|
||||||
vim
|
vim
|
||||||
# terminal utilities
|
# terminal utilities
|
||||||
|
|
|
@ -22,6 +22,16 @@ in {
|
||||||
|
|
||||||
programs.fish = {
|
programs.fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
shellAliases = {
|
||||||
|
"bt" = "bluetoothctl";
|
||||||
|
};
|
||||||
|
shellAbbrs = {
|
||||||
|
"bton" = "bluetoothctl power on";
|
||||||
|
"btoff" = "bluetoothctl power off";
|
||||||
|
"btcon" = "bluetoothctl connect";
|
||||||
|
"btdis" = "bluetoothctl disconnect";
|
||||||
|
"btinfo" = "bluetoothctl info";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
xdg.configFile."fish/functions" = {source = ./. + "/functions";};
|
xdg.configFile."fish/functions" = {source = ./. + "/functions";};
|
||||||
|
|
|
@ -22,7 +22,7 @@ in {
|
||||||
email = "antoine@alarsyo.net";
|
email = "antoine@alarsyo.net";
|
||||||
base_url = "https://pass.alarsyo.net";
|
base_url = "https://pass.alarsyo.net";
|
||||||
lock_timeout = 60 * 60 * 12;
|
lock_timeout = 60 * 60 * 12;
|
||||||
pinentry = pkgs.pinentry-gnome;
|
pinentry = pkgs.pinentry-qt;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -79,7 +79,10 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
openssh.enable = true;
|
openssh = {
|
||||||
|
enable = true;
|
||||||
|
forwardX11 = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
my.gui = {
|
my.gui = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -25,6 +25,8 @@
|
||||||
# dev
|
# dev
|
||||||
|
|
||||||
rustup
|
rustup
|
||||||
|
gdb
|
||||||
|
valgrind
|
||||||
arandr
|
arandr
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue