Port to 20.03
This commit is contained in:
parent
c50075d220
commit
c81070da92
9 changed files with 96 additions and 34 deletions
|
@ -3,7 +3,7 @@
|
||||||
foregroundBold = "#e8e8e8";
|
foregroundBold = "#e8e8e8";
|
||||||
cursor = "#e8e8e8";
|
cursor = "#e8e8e8";
|
||||||
cursorForeground = "#1f2022";
|
cursorForeground = "#1f2022";
|
||||||
background = "#1f2022";
|
background = "#292b2e";
|
||||||
color0 = "#1f2022";
|
color0 = "#1f2022";
|
||||||
color8 = "#585858";
|
color8 = "#585858";
|
||||||
color7 = "#a3a3a3";
|
color7 = "#a3a3a3";
|
||||||
|
|
|
@ -14,5 +14,6 @@
|
||||||
./git.nix
|
./git.nix
|
||||||
./gtk.nix
|
./gtk.nix
|
||||||
./xdg.nix
|
./xdg.nix
|
||||||
|
./sway
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
36
fish.nix
36
fish.nix
|
@ -1,18 +1,18 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
{
|
{
|
||||||
programs.fish = {
|
programs.fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# plugins = [
|
plugins = with pkgs; [
|
||||||
# {
|
{
|
||||||
# name = "fzf";
|
name = "fzf";
|
||||||
# src = pkgs.fetchFromGithub {
|
src = pkgs.fetchFromGitHub {
|
||||||
# owner = "jethrokuan";
|
owner = "jethrokuan";
|
||||||
# repo = "fzf";
|
repo = "fzf";
|
||||||
# rev = "7f4c0b6d9545126a1bdf30279e6b1ab6ffedc299";
|
rev = "c3defd4a922e97120503b45e26efa775bc672b50";
|
||||||
# sha256 = "0c5i7sdrsp0q3vbziqzdyqn4fmp235ax4mn4zslrswvn8g3fvdyh";
|
sha256 = "1k5b0nva0mbqc9830qhbcwxsi8d9b2p4ws1fq0bw9nkf2ripyp4p";
|
||||||
# };
|
};
|
||||||
# }
|
}
|
||||||
# ];
|
];
|
||||||
interactiveShellInit = ''
|
interactiveShellInit = ''
|
||||||
# fish git prompt
|
# fish git prompt
|
||||||
set __fish_git_prompt_show_informative_status 'yes'
|
set __fish_git_prompt_show_informative_status 'yes'
|
||||||
|
@ -30,12 +30,12 @@
|
||||||
set -U FZF_LEGACY_KEYBINDINGS 0
|
set -U FZF_LEGACY_KEYBINDINGS 0
|
||||||
#set -x TERM xterm-256color
|
#set -x TERM xterm-256color
|
||||||
|
|
||||||
if status is-interactive
|
#if status is-interactive
|
||||||
and not status is-login
|
#and not status is-login
|
||||||
and not set -q TMUX
|
#and not set -q TMUX
|
||||||
and string match -qr "^xterm-.*" "$TERM"
|
#and string match -qr "^xterm-.*" "$TERM"
|
||||||
exec tmux
|
# exec tmux
|
||||||
end
|
#end
|
||||||
'';
|
'';
|
||||||
promptInit = ''
|
promptInit = ''
|
||||||
function fish_prompt
|
function fish_prompt
|
||||||
|
|
2
gtk.nix
2
gtk.nix
|
@ -14,6 +14,6 @@
|
||||||
};
|
};
|
||||||
qt = {
|
qt = {
|
||||||
enable = true;
|
enable = true;
|
||||||
platformTheme = "gnome";
|
platformTheme = "gtk";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
11
metis.nix
11
metis.nix
|
@ -6,7 +6,7 @@ let
|
||||||
MAILDIR = "\$HOME/.var/mail";
|
MAILDIR = "\$HOME/.var/mail";
|
||||||
MBLAZE = "\$HOME/.config/mblaze";
|
MBLAZE = "\$HOME/.config/mblaze";
|
||||||
NOTMUCH_CONFIG = "\$HOME/.config/notmuch/config";
|
NOTMUCH_CONFIG = "\$HOME/.config/notmuch/config";
|
||||||
GDK_BACKEND= "wayland";
|
GDK_BACKEND= "x11";
|
||||||
MOZ_ENABLE_WAYLAND= "1";
|
MOZ_ENABLE_WAYLAND= "1";
|
||||||
SSH_ASKPASS = "${pkgs.lxqt.lxqt-openssh-askpass}/bin/lxqt-openssh-askpass";
|
SSH_ASKPASS = "${pkgs.lxqt.lxqt-openssh-askpass}/bin/lxqt-openssh-askpass";
|
||||||
};
|
};
|
||||||
|
@ -25,6 +25,7 @@ in
|
||||||
systemd.user.sessionVariables = userEnv;
|
systemd.user.sessionVariables = userEnv;
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
xwayland
|
||||||
slurp
|
slurp
|
||||||
grim
|
grim
|
||||||
jq
|
jq
|
||||||
|
@ -78,20 +79,16 @@ in
|
||||||
texlive-tubslatex
|
texlive-tubslatex
|
||||||
openssl
|
openssl
|
||||||
audio-recorder
|
audio-recorder
|
||||||
qt59.qttools
|
qt5.qttools
|
||||||
emacs
|
emacs
|
||||||
] ++ (with unstable; [
|
] ++ (with unstable; [
|
||||||
python38Packages.managesieve
|
python38Packages.managesieve
|
||||||
android-studio
|
android-studio
|
||||||
cachix
|
cachix
|
||||||
keepassxc
|
keepassxc
|
||||||
|
signal-desktop
|
||||||
]);
|
]);
|
||||||
|
|
||||||
#wayland.windowManager.sway = {
|
|
||||||
# enable = true;
|
|
||||||
# extraConfig = (builtins.readFile sway/config);
|
|
||||||
#};
|
|
||||||
|
|
||||||
services.syncthing = {
|
services.syncthing = {
|
||||||
enable = true;
|
enable = true;
|
||||||
tray = false;
|
tray = false;
|
||||||
|
|
33
sway/config
33
sway/config
|
@ -18,7 +18,7 @@ set $light_cyan #4f97d7ff
|
||||||
set $dark_white #a31db1ff
|
set $dark_white #a31db1ff
|
||||||
set $light_white #b03060ff
|
set $light_white #b03060ff
|
||||||
|
|
||||||
#xwayland disable
|
xwayland enable
|
||||||
|
|
||||||
# global modifier key
|
# global modifier key
|
||||||
set $mod Mod4
|
set $mod Mod4
|
||||||
|
@ -70,6 +70,9 @@ default_border pixel 1
|
||||||
# keep focus within current container?
|
# keep focus within current container?
|
||||||
focus_wrapping no
|
focus_wrapping no
|
||||||
|
|
||||||
|
# focus goes to window if mouse is moved onto it
|
||||||
|
focus_follows_mouse yes
|
||||||
|
|
||||||
# enter fullscreen mode for the focused container
|
# enter fullscreen mode for the focused container
|
||||||
bindsym $mod+o fullscreen
|
bindsym $mod+o fullscreen
|
||||||
|
|
||||||
|
@ -98,11 +101,20 @@ set $9 9
|
||||||
set $10 10
|
set $10 10
|
||||||
|
|
||||||
# default mode
|
# default mode
|
||||||
#workspace_layout tabbed
|
workspace_layout tabbed
|
||||||
|
|
||||||
# automatically jump back to previous workspace
|
# automatically jump back to previous workspace
|
||||||
workspace_auto_back_and_forth yes
|
workspace_auto_back_and_forth yes
|
||||||
|
|
||||||
|
# messaging
|
||||||
|
workspace 2 output LVDS-1
|
||||||
|
|
||||||
|
# web and doc
|
||||||
|
workspace 1 output VGA-1
|
||||||
|
|
||||||
|
# editor and IDE
|
||||||
|
workspace 3 output DP-2
|
||||||
|
|
||||||
# change focus
|
# change focus
|
||||||
bindsym $mod+h focus left
|
bindsym $mod+h focus left
|
||||||
bindsym $mod+j focus down
|
bindsym $mod+j focus down
|
||||||
|
@ -273,11 +285,22 @@ seat * {
|
||||||
hide_cursor 5000
|
hide_cursor 5000
|
||||||
}
|
}
|
||||||
|
|
||||||
#default_floating_border none
|
assign [app_id="thunderbird"] workspace 1
|
||||||
for_window [class="jetbrains-studio"] floating enable
|
assign [app_id="telegramdesktop"] workspace 1
|
||||||
focus_follows_mouse no
|
assign [app_id="firefox" title="Riot.*"] workspace 1
|
||||||
|
assign [app_id="firefox" title="Instant messaging.*"] workspace 1
|
||||||
|
assign [app_id="firefox" title="Threema Web.*"] workspace 1
|
||||||
|
assign [app_id="firefox" title="chaos\.social.*"] workspace 1
|
||||||
|
assign [app_id="thunderbird" title="Write:.*"] workspace 3
|
||||||
|
assign [app_id="firefox"] workspace 2
|
||||||
|
assign [app_id="jetbrains-studio"] workspace 3
|
||||||
|
assign [app_id="org.keepassxc.KeePassXC"] workspace 10
|
||||||
|
|
||||||
exec xset s off
|
exec xset s off
|
||||||
#exec xss-lock -- lock-session
|
#exec xss-lock -- lock-session
|
||||||
exec swayidle -w timeout 300 '$HOME/bin/lock-session' timeout 240 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' before-sleep '$HOME/bin/lock-session' lock '$HOME/bin/lock-session'
|
exec swayidle -w timeout 300 '$HOME/bin/lock-session' timeout 240 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' before-sleep '$HOME/bin/lock-session' lock '$HOME/bin/lock-session'
|
||||||
#exec redshift
|
#exec redshift
|
||||||
|
exec keepassxc
|
||||||
|
exec firefox
|
||||||
|
exec thunderbird
|
||||||
|
exec telegram
|
||||||
|
|
30
sway/default.nix
Normal file
30
sway/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
{ config, pkgs, lib, ...}:
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
qt5.qtwayland
|
||||||
|
swaylock
|
||||||
|
swayidle
|
||||||
|
xwayland
|
||||||
|
mako
|
||||||
|
kanshi
|
||||||
|
i3blocks
|
||||||
|
termite
|
||||||
|
bemenu
|
||||||
|
xss-lock
|
||||||
|
];
|
||||||
|
|
||||||
|
wayland.windowManager.sway = {
|
||||||
|
enable = true;
|
||||||
|
config = null;
|
||||||
|
extraConfig = (builtins.readFile ./config);
|
||||||
|
extraSessionCommands = ''
|
||||||
|
export SDL_VIDEODRIVER=wayland
|
||||||
|
# needs qt5.qtwayland in systemPackages
|
||||||
|
export QT_QPA_PLATFORM=wayland
|
||||||
|
export QT_WAYLAND_DISABLE_WINDOWDECORATION="1"
|
||||||
|
# Fix for some Java AWT applications (e.g. Android Studio),
|
||||||
|
# use this if they aren't displayed properly:
|
||||||
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
|
@ -5,6 +5,16 @@ let
|
||||||
version = "2010-11-06";
|
version = "2010-11-06";
|
||||||
src = vim/plugins/myFtplugins;
|
src = vim/plugins/myFtplugins;
|
||||||
};
|
};
|
||||||
|
spacemacsTheme = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
||||||
|
pname = "spacemacs-theme";
|
||||||
|
version = "2.0.1";
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "colepeters";
|
||||||
|
repo = "spacemacs-theme.vim";
|
||||||
|
rev = "056bba9bd05a2c97c63c28216a1c232cfb91529e";
|
||||||
|
sha256 = "0iy3i6waigk759p2z59mrxkjc0p412y7d8zf3cjak4a9sh1sh6qz";
|
||||||
|
};
|
||||||
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
programs.vim = {
|
programs.vim = {
|
||||||
|
@ -21,6 +31,7 @@ in
|
||||||
pkgs.vimPlugins.vim-airline
|
pkgs.vimPlugins.vim-airline
|
||||||
pkgs.vimPlugins.vim-airline-themes
|
pkgs.vimPlugins.vim-airline-themes
|
||||||
pkgs.vimPlugins.vim-fish
|
pkgs.vimPlugins.vim-fish
|
||||||
|
spacemacsTheme
|
||||||
#pkgs.vimPlugins.vim-gnupg
|
#pkgs.vimPlugins.vim-gnupg
|
||||||
#pkgs.vimPlugins.vim-l9
|
#pkgs.vimPlugins.vim-l9
|
||||||
pkgs.vimPlugins.vim-ledger
|
pkgs.vimPlugins.vim-ledger
|
||||||
|
|
|
@ -53,9 +53,9 @@ if (has("termguicolors"))
|
||||||
endif
|
endif
|
||||||
|
|
||||||
set t_Co=256
|
set t_Co=256
|
||||||
set background=dark
|
|
||||||
|
|
||||||
colorscheme base16-spacemacs
|
set background=dark
|
||||||
|
colorscheme spacemacs-theme
|
||||||
|
|
||||||
" Use tabs for indent
|
" Use tabs for indent
|
||||||
set smarttab
|
set smarttab
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue