Update :/
This commit is contained in:
parent
25ef3eaca5
commit
c9a68e62c7
5 changed files with 21 additions and 14 deletions
|
@ -1,7 +1,7 @@
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
services.gnome-keyring = {
|
services.gnome-keyring = {
|
||||||
enable = true;
|
enable = false;
|
||||||
components = [ "pkcs11" "secrets" "ssh" ];
|
components = [ "pkcs11" "secrets" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
anchor = "bottom-right";
|
anchor = "bottom-right";
|
||||||
backgroundColor = colors.color8;
|
backgroundColor = colors.color8;
|
||||||
borderColor = colors.color0;
|
borderColor = colors.color0;
|
||||||
defaultTimeout = -1;
|
#defaultTimeout = -1;
|
||||||
font = "Source Code Pro 8";
|
font = "Source Code Pro 10";
|
||||||
format = ''<b>%a</b> %s\n%b'';
|
format = ''<b>%a</b> %s\n%b'';
|
||||||
height = 100;
|
height = 100;
|
||||||
#groupBy = "app-name";
|
#groupBy = "app-name";
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
{ config, pkgs, lib, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
let
|
let
|
||||||
userEnv = {
|
userEnv = {
|
||||||
XDISPLAY=":0";
|
|
||||||
TERMINAL="xterm-256color";
|
|
||||||
EDITOR = "vim";
|
EDITOR = "vim";
|
||||||
PAGER = "less";
|
PAGER = "less";
|
||||||
MAILDIR = "\$HOME/.var/mail";
|
MAILDIR = "\$HOME/.var/mail";
|
||||||
|
@ -10,10 +8,8 @@ let
|
||||||
NOTMUCH_CONFIG = "\$HOME/.config/notmuch/config";
|
NOTMUCH_CONFIG = "\$HOME/.config/notmuch/config";
|
||||||
#GDK_BACKEND= "x11";
|
#GDK_BACKEND= "x11";
|
||||||
MOZ_ENABLE_WAYLAND= "1";
|
MOZ_ENABLE_WAYLAND= "1";
|
||||||
SSH_ASKPASS = "${pkgs.lxqt.lxqt-openssh-askpass}/bin/lxqt-openssh-askpass";
|
|
||||||
};
|
};
|
||||||
unstable = import <nixpkgs-unstable> {};
|
unstable = import <nixpkgs-unstable> {};
|
||||||
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
@ -28,11 +24,11 @@ in
|
||||||
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
tcpdump
|
||||||
sqlite
|
sqlite
|
||||||
clang
|
clang
|
||||||
gitAndTools.git-bug
|
gitAndTools.git-bug
|
||||||
pypi2nix
|
pypi2nix
|
||||||
libnotify
|
|
||||||
aspellDicts.en
|
aspellDicts.en
|
||||||
aspellDicts.de
|
aspellDicts.de
|
||||||
aspellDicts.en-science
|
aspellDicts.en-science
|
||||||
|
@ -46,7 +42,6 @@ in
|
||||||
slurp
|
slurp
|
||||||
grim
|
grim
|
||||||
jq
|
jq
|
||||||
lxqt.lxqt-openssh-askpass
|
|
||||||
xdg_utils
|
xdg_utils
|
||||||
pwgen
|
pwgen
|
||||||
mkpasswd
|
mkpasswd
|
||||||
|
@ -90,7 +85,7 @@ in
|
||||||
unzip
|
unzip
|
||||||
anki
|
anki
|
||||||
bluez-tools
|
bluez-tools
|
||||||
texlive-tubslatex
|
#texlive-tubslatex
|
||||||
openssl
|
openssl
|
||||||
audio-recorder
|
audio-recorder
|
||||||
qt5.qttools
|
qt5.qttools
|
||||||
|
@ -108,14 +103,28 @@ in
|
||||||
corefonts
|
corefonts
|
||||||
mpv
|
mpv
|
||||||
firefox-bin
|
firefox-bin
|
||||||
|
libvirt
|
||||||
|
qprint
|
||||||
|
apacheHttpd
|
||||||
|
netanim
|
||||||
|
ns-3
|
||||||
|
kitty
|
||||||
|
git-lfs
|
||||||
|
kcachegrind
|
||||||
|
wf-recorder
|
||||||
|
ffmpeg
|
||||||
] ++ (with unstable; [
|
] ++ (with unstable; [
|
||||||
|
wireshark
|
||||||
|
valgrind
|
||||||
|
gnuplot
|
||||||
thunderbird-bin
|
thunderbird-bin
|
||||||
|
keepassxc
|
||||||
python38Packages.managesieve
|
python38Packages.managesieve
|
||||||
android-studio
|
android-studio
|
||||||
cachix
|
cachix
|
||||||
keepassxc
|
|
||||||
signal-desktop
|
signal-desktop
|
||||||
minecraft
|
minecraft
|
||||||
|
plantuml
|
||||||
]);
|
]);
|
||||||
|
|
||||||
services.syncthing = {
|
services.syncthing = {
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
programs.bash = {
|
programs.bash = {
|
||||||
enable = true;
|
enable = true;
|
||||||
profileExtra = ''
|
profileExtra = ''
|
||||||
export TERM="xterm-256color"
|
|
||||||
export EDITOR="vim"
|
export EDITOR="vim"
|
||||||
alias gst="git status"
|
alias gst="git status"
|
||||||
alias gco="git commit";
|
alias gco="git commit";
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
enableCompletion = true;
|
enableCompletion = true;
|
||||||
autocd = true;
|
autocd = true;
|
||||||
sessionVariables = {
|
sessionVariables = {
|
||||||
TERM = "xterm-256color";
|
|
||||||
EDITOR = "vim";
|
EDITOR = "vim";
|
||||||
};
|
};
|
||||||
history = {
|
history = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue