merge the two timelines
This commit is contained in:
commit
3d42877203
|
@ -1,12 +0,0 @@
|
||||||
{ lib, config, pkgs, ...}:
|
|
||||||
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
../common/desktop.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
boot.loader.grub.enable = true;
|
|
||||||
boot.loader.grub.device = "/dev/sda";
|
|
||||||
|
|
||||||
networking.hostName = "mainsail";
|
|
||||||
}
|
|
|
@ -0,0 +1,68 @@
|
||||||
|
{ lib, config, pkgs, ...}:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
../common/steam.nix
|
||||||
|
../common/desktop.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
boot.loader.grub.enable = true;
|
||||||
|
boot.loader.grub.device = "/dev/sda";
|
||||||
|
|
||||||
|
networking.hostName = "mainsail";
|
||||||
|
|
||||||
|
services.paperless = {
|
||||||
|
enable = true;
|
||||||
|
passwordFile = "/etc/paperless-password";
|
||||||
|
port = 3004;
|
||||||
|
address = "localhost";
|
||||||
|
extraConfig = {
|
||||||
|
PAPERLESS_URL = "https://paperless.beepboop.systems";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
programs.adb.enable = true;
|
||||||
|
users.users.usr.extraGroups = ["adbusers"];
|
||||||
|
|
||||||
|
environment.etc."nextcloud-admin-pass".text = "aslkfjaslkdfjsalkdfjlKJFLKJDLFKJLSKDJFLSKDJFLSKDJFLSKDFJ";
|
||||||
|
services.nextcloud = {
|
||||||
|
enable = true;
|
||||||
|
hostName = "beepboop.systems";
|
||||||
|
config.adminpassFile = "/etc/nextcloud-admin-pass";
|
||||||
|
package = pkgs.nextcloud27;
|
||||||
|
# Instead of using pkgs.nextcloud27Packages.apps,
|
||||||
|
# we'll reference the package version specified above
|
||||||
|
extraApps = with config.services.nextcloud.package.packages.apps; {
|
||||||
|
inherit news contacts calendar tasks;
|
||||||
|
};
|
||||||
|
extraAppsEnable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.targets.sleep.enable = false;
|
||||||
|
systemd.targets.suspend.enable = false;
|
||||||
|
systemd.targets.hibernate.enable = false;
|
||||||
|
systemd.targets.hybrid-sleep.enable = false;
|
||||||
|
|
||||||
|
services.getty.greetingLine = "
|
||||||
|
welcome to mainsail |`-:_
|
||||||
|
,----....____ | `+.
|
||||||
|
( ````----....|___ |
|
||||||
|
\\ _ ````----....____
|
||||||
|
\\ _) ```---.._
|
||||||
|
\\ \\
|
||||||
|
)`.\\ )`. )`. )`. )`. )`. )`. )`. )`. )`. )`.
|
||||||
|
-' `-' `-' `-' `-' `-' `-' `-' `-' `-' `-' `
|
||||||
|
";
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
vscodium-fhs
|
||||||
|
libreoffice
|
||||||
|
|
||||||
|
anki
|
||||||
|
ytfzf
|
||||||
|
kdenlive
|
||||||
|
libreoffice
|
||||||
|
i3
|
||||||
|
gcc
|
||||||
|
gnumake
|
||||||
|
];
|
||||||
|
}
|
|
@ -128,23 +128,6 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
# services.paperless = {
|
|
||||||
# enable = true;
|
|
||||||
# passwordFile = "/etc/paperless-password";
|
|
||||||
# port = 3004;
|
|
||||||
# address = "localhost";
|
|
||||||
# extraConfig = {
|
|
||||||
# PAPERLESS_URL = "https://paperless.beepboop.systems";
|
|
||||||
# };
|
|
||||||
# };
|
|
||||||
|
|
||||||
# services.ntfy-sh = {
|
|
||||||
# enable = true;
|
|
||||||
# settings = {
|
|
||||||
# listen-http = ":3500";
|
|
||||||
# };
|
|
||||||
# };
|
|
||||||
|
|
||||||
services.vaultwarden.enable = true;
|
services.vaultwarden.enable = true;
|
||||||
|
|
||||||
# Open ports in the firewall.
|
# Open ports in the firewall.
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, bash
|
||||||
|
, makeWrapper
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "rebuild";
|
||||||
|
version = "1.00";
|
||||||
|
|
||||||
|
src = ./rebuild;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
buildInputs = [ bash ];
|
||||||
|
|
||||||
|
buildPhase = "";
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp $src/rebuild $out/bin
|
||||||
|
wrapProgram $out/bin/rebuild --prefix PATH : ${lib.makeBinPath [ bash ]}
|
||||||
|
'';
|
||||||
|
|
||||||
|
phases = [ "buildPhase" "installPhase" ];
|
||||||
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
, lib
|
, lib
|
||||||
|
, sxhkd
|
||||||
, bash
|
, bash
|
||||||
, feh
|
, feh
|
||||||
, jq
|
, jq
|
||||||
|
@ -24,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
for i in $(ls $src/sh); do
|
for i in $(ls $src/sh); do
|
||||||
cp $src/sh/$i $out/bin
|
cp $src/sh/$i $out/bin
|
||||||
wrapProgram $out/bin/$i --prefix PATH : ${lib.makeBinPath [ bash feh xrandr jq curl ]}
|
wrapProgram $out/bin/$i --prefix PATH : ${lib.makeBinPath [ sxhkd bash feh xrandr jq curl ]}
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,9 @@ exists() {
|
||||||
xrandr | grep ' connected' | grep -c "${1}"
|
xrandr | grep ' connected' | grep -c "${1}"
|
||||||
}
|
}
|
||||||
|
|
||||||
bspc monitor eDP-1 -d 1 2 3 4 5 6 7 8 9
|
if [ ! "$(hostname)" = "mainsail" ]; then
|
||||||
|
bspc monitor eDP-1 -d 1 2 3 4 5 6 7 8 9
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "$(exists "DP-1")" -gt 1 ]; then
|
if [ "$(exists "DP-1")" -gt 1 ]; then
|
||||||
printf "two"
|
printf "two"
|
||||||
|
@ -13,5 +15,10 @@ if [ "$(exists "DP-1")" -gt 1 ]; then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "$(hostname)" = "mainsail" ]; then
|
||||||
# default configuration's fine
|
# this is a tower, so there's only one configuration
|
||||||
|
printf "mainsail detected\n"
|
||||||
|
xrandr --output VGA-1 --left-of HDMI-1
|
||||||
|
bspc monitor VGA-1 -d 1 3 5 7 9
|
||||||
|
bspc monitor HDMI-1 -d 2 4 6 8 0
|
||||||
|
fi
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
# mode - change the current effective sxhkd configuration
|
||||||
|
|
||||||
|
pkill sxhkd
|
||||||
|
sxhkd -c ~/.config/sxhkd/$1 & disown
|
|
@ -63,6 +63,7 @@ in {
|
||||||
pinentry-curses
|
pinentry-curses
|
||||||
magic-wormhole
|
magic-wormhole
|
||||||
xbrightness
|
xbrightness
|
||||||
|
xdotool
|
||||||
figlet
|
figlet
|
||||||
|
|
||||||
unzip
|
unzip
|
||||||
|
|
|
@ -28,6 +28,8 @@ in {
|
||||||
dig
|
dig
|
||||||
htop
|
htop
|
||||||
gnumake
|
gnumake
|
||||||
|
|
||||||
|
(pkgs.callPackage ../builds/rebuild.nix {})
|
||||||
];
|
];
|
||||||
|
|
||||||
system.copySystemConfiguration = true;
|
system.copySystemConfiguration = true;
|
||||||
|
|
|
@ -157,11 +157,6 @@ local packer = require('packer').startup(function(use)
|
||||||
use 'lervag/vimtex'
|
use 'lervag/vimtex'
|
||||||
use 'https://github.com/protex/better-digraphs.nvim'
|
use 'https://github.com/protex/better-digraphs.nvim'
|
||||||
use 'https://github.com/itchyny/calendar.vim'
|
use 'https://github.com/itchyny/calendar.vim'
|
||||||
use {
|
|
||||||
"empat94/nvim-rss",
|
|
||||||
requires = { "tami5/sqlite.lua" },
|
|
||||||
rocks = "luaexpat",
|
|
||||||
}
|
|
||||||
use {
|
use {
|
||||||
"folke/which-key.nvim",
|
"folke/which-key.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
|
@ -178,33 +173,6 @@ local packer = require('packer').startup(function(use)
|
||||||
end);
|
end);
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
||||||
-- lsp configuration {{{
|
|
||||||
local lsp = require('lsp-zero').preset({})
|
|
||||||
|
|
||||||
lsp.on_attach(function(client, bufnr)
|
|
||||||
lsp.default_keymaps({buffer = bufnr})
|
|
||||||
end)
|
|
||||||
|
|
||||||
local lspconfig = require('lspconfig')
|
|
||||||
|
|
||||||
lsp.ensure_installed({
|
|
||||||
'rnix',
|
|
||||||
'jedi_language_server',
|
|
||||||
})
|
|
||||||
|
|
||||||
lspconfig.lua_ls.setup(lsp.nvim_lua_ls())
|
|
||||||
lspconfig.rnix.setup({})
|
|
||||||
lspconfig.jedi_language_server.setup({})
|
|
||||||
|
|
||||||
lsp.setup()
|
|
||||||
-- }}}
|
|
||||||
|
|
||||||
require("nvim-rss").setup({
|
|
||||||
feeds_dir = "/home/usr",
|
|
||||||
date_format = "%x %r",
|
|
||||||
verbose = false,
|
|
||||||
})
|
|
||||||
|
|
||||||
nnoremap('<leader>ff', function()
|
nnoremap('<leader>ff', function()
|
||||||
require('telescope.builtin').find_files()
|
require('telescope.builtin').find_files()
|
||||||
end)
|
end)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# adjust some keybindings
|
# adjust some keybindings
|
||||||
keyboard
|
keyboard
|
||||||
|
#
|
||||||
# start the wm
|
# start the wm
|
||||||
sxhkd &
|
sxhkd &
|
||||||
bspwm
|
bspwm
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
q
|
||||||
|
mode sxhkdrc
|
||||||
|
|
||||||
|
{ctrl +,shift +,_} h
|
||||||
|
xdotool mousemove_relative -- {-5,-50,-20} 0
|
||||||
|
|
||||||
|
{ctrl +,shift +,_} j
|
||||||
|
xdotool mousemove_relative -- 0 {5,50,20}
|
||||||
|
|
||||||
|
{ctrl +,shift +,_} k
|
||||||
|
xdotool mousemove_relative -- 0 {-5,-50,-20}
|
||||||
|
|
||||||
|
{ctrl +,shift +,_} l
|
||||||
|
xdotool mousemove_relative -- {5,50,20} 0
|
||||||
|
|
||||||
|
{ctrl +,_} {a,s,d}
|
||||||
|
xdotool {mousedown,click} {1,2,3}
|
||||||
|
|
||||||
|
g
|
||||||
|
xdotool mouseup 1; xdotool mouseup 2; xdotool mouseup 3
|
|
@ -16,32 +16,17 @@ super + r
|
||||||
bspc wm -r
|
bspc wm -r
|
||||||
|
|
||||||
super + w
|
super + w
|
||||||
disp && wallpaper && statusbar
|
disp && wallpaper && statusbar && keyboard
|
||||||
|
|
||||||
super + {_,shift + }n
|
super + {_,shift + }n
|
||||||
nws {local,national}
|
nws {local,national}
|
||||||
|
|
||||||
super + ctrl + n
|
super + m
|
||||||
net
|
mode mouse
|
||||||
|
|
||||||
super + ctrl + t
|
|
||||||
st -e htop
|
|
||||||
|
|
||||||
{XF86AudioRaiseVolume,XF86AudioLowerVolume}
|
{XF86AudioRaiseVolume,XF86AudioLowerVolume}
|
||||||
vol {inc,dec}
|
vol {inc,dec}
|
||||||
|
|
||||||
super + b
|
|
||||||
fire
|
|
||||||
|
|
||||||
super + shift + b
|
|
||||||
fire -P
|
|
||||||
|
|
||||||
super + ctrl + b
|
|
||||||
chromium
|
|
||||||
|
|
||||||
super + {_,shift + }v
|
|
||||||
vol {inc,dec}
|
|
||||||
|
|
||||||
# bspwm
|
# bspwm
|
||||||
super + q
|
super + q
|
||||||
bspc node -c
|
bspc node -c
|
||||||
|
@ -56,7 +41,7 @@ super + {_,ctrl +,shift + }{h,j,k,l}
|
||||||
bspc node -{f,p,s} {west,south,north,east}
|
bspc node -{f,p,s} {west,south,north,east}
|
||||||
|
|
||||||
super + {_,shift + } {1-9,0}
|
super + {_,shift + } {1-9,0}
|
||||||
bspc {desktop -f,node -d} '^{1-9,10}'
|
bspc {desktop -f,node -d} '{1-9,10}'
|
||||||
|
|
||||||
super + {t,f,s}
|
super + {t,f,s}
|
||||||
bspc node -t {tiled,floating,fullscreen}
|
bspc node -t {tiled,floating,fullscreen}
|
||||||
|
|
Loading…
Reference in New Issue