Compare commits

...

10 commits

Author SHA1 Message Date
fleaz e5143b7af0 home/waybar: small css changes 2024-05-24 00:00:47 +02:00
fleaz 066d4a41f3 home: Drop some packages 2024-05-24 00:00:15 +02:00
fleaz 9960cd491a
Add some RICE 2024-05-07 19:09:51 +02:00
fleaz 9e5ad4f304
Install fwupd 2024-05-07 19:09:01 +02:00
fleaz a440429c6d home/sway: Add screen config for smithers 2024-04-30 22:11:06 +02:00
fleaz 62b8e09a20
home/neovim: Add autosession plugin 2024-04-30 17:48:17 +02:00
fleaz d638ae8bb6
home/dell: Drop mattermost-desktop and stuff used by nvim-coc 2024-04-30 17:17:36 +02:00
fleaz f91ba323d6
home-manager: fix laptop names and remove default kanshi installation 2024-04-17 00:07:00 +02:00
fleaz 286af02f41
home/kanshi: Switch left and right screen 2024-04-16 22:31:01 +02:00
fleaz 1c18f14092
home/neovim: Configure NIL 2024-04-16 14:31:38 +02:00
10 changed files with 131 additions and 108 deletions

View file

@ -28,9 +28,7 @@ in
modules/manual.nix
modules/tig.nix
../secrets/ssh-config.nix
] ++ lib.optionals (config.networking.hostName == "jimbo") [
modules/kanshi.nix
] ++ lib.optionals (config.networking.hostName == "milhouse") [
] ++ lib.optionals (config.networking.hostName == "smithers") [
modules/kanshi.nix
];
@ -92,7 +90,6 @@ in
fzf
ncmpcpp
acpi
joplin # cli
joplin-desktop # gui
unstable.prusa-slicer
@ -107,19 +104,13 @@ in
gnome.gedit
pwgen
# for coc
nodejs
#rnix-lsp
nixpkgs-fmt
# kubernetes stuff
kubectl
krew
kubectx
# from my overlay
studio-link
python3.pkgs.brother-ql
] ++ lib.optionals (config.my.isLaptop) [
networkmanager
];
@ -155,11 +146,6 @@ in
defaultTimeout = 5000;
};
services.kanshi = {
enable = true;
};
services.gammastep = {
enable = true;
tray = true;

View file

@ -26,13 +26,8 @@
subversionClient
tig
freerdp
mattermost-desktop
firefox
# for coc
nodejs
#rnix-lsp
# for zsh-fzf plugin
fzf

View file

@ -17,12 +17,12 @@ let
status = "disable";
}
{
criteria = "DP-9";
criteria = "DP-10";
scale = 1.3;
position = "0,0";
}
{
criteria = "DP-10";
criteria = "DP-9";
scale = 1.3;
position = "2952,0";
}

View file

@ -4,10 +4,10 @@
enable = true;
withPython3 = true;
extraPackages = with pkgs; [
nil
nixpkgs-fmt
gopls
pyright
nil
nixpkgs-fmt
gopls
pyright
(python3.withPackages (ps: with ps; [
black
flake8
@ -63,6 +63,9 @@
# show marks
vim-signature
# Session management
auto-session
];
extraConfig = ''
@ -141,6 +144,7 @@
let g:go_highlight_types = 1
let g:go_highlight_operators = 1
let g:go_highlight_build_constraints = 1
" Don't use gopls from vim-go
let g:go_gopls_enabled = 0
@ -154,11 +158,29 @@
let g:neoformat_enabled_python = ['black', 'isort']
lua << EOF
require("auto-session").setup {
auto_save_enabled = true;
auto_restore_enabled = true;
}
require("bufferline").setup{}
require('lspconfig').gopls.setup{}
require('lspconfig').pyright.setup{}
require('lspconfig').nil_ls.setup {
autostart = true,
capabilities = caps,
cmd = { "nil" },
settings = {
['nil'] = {
testSetting = 42,
formatting = {
command = { "nixpkgs-fmt" },
},
},
},
}
vim.api.nvim_create_autocmd('LspAttach', {
desc = 'LSP actions',
callback = function()

View file

@ -5,6 +5,7 @@ in
{
wayland.windowManager.sway = {
enable = true;
package = pkgs.swayfx;
wrapperFeatures.gtk = true;
config = {
@ -33,21 +34,67 @@ in
scale = "1.3";
position = "2953,0";
};
} // lib.optionalAttrs (nixosConfig.networking.hostName == "smithers") {
"eDP-1" = {
mode = "2256x1504";
scale = "1.3";
position = "0,0";
};
};
gaps = { inner = 8; };
window.border = 0;
gaps = { inner = 10; };
window.border = 2;
window.hideEdgeBorders = "smart";
workspaceAutoBackAndForth = true;
terminal = "foot";
colors = {
focused = {
border = "#4c7899";
background = "#285577";
text = "#ffffff";
indicator = "#2e9ef4";
childBorder = "#285577";
};
focusedInactive = {
border = "#333333";
background = "#5f676a";
text = "#ffffff";
indicator = "#484e50";
childBorder = "#5f676a";
};
unfocused = {
border = "#333333";
background = "#222222";
text = "#888888";
indicator = "#292d2e";
childBorder = "#900000";
};
urgent = {
border = "#2f343a";
background = "#900000";
text = "#ffffff";
indicator = "#900000";
childBorder = "#900000";
};
placeholder = {
border = "#000000";
background = "#0c0c0c";
text = "#ffffff";
indicator = "#000000";
childBorder = "#0c0c0c";
};
};
bars = [{ command = "${pkgs.waybar}/bin/waybar"; }];
startup = [
{
command = ''${pkgs.swayidle}/bin/swayidle -w \
timeout 600 "${lockCmd}" \
timeout 900 "${pkgs.sway}/bin/swaymsg output * dpms off" \
resume "${pkgs.sway}/bin/swaymsg output * dpms on" \
timeout 900 "${pkgs.swayfx}/bin/swaymsg output * dpms off" \
resume "${pkgs.swayfx}/bin/swaymsg output * dpms on" \
before-sleep "${lockCmd}"'';
}
];
@ -139,6 +186,13 @@ in
};
};
extraConfig = ''
blur enable
blur_radius 10
default_dim_inactive 0.2
corner_radius 15
'';
};
}

View file

@ -1,11 +1,3 @@
/* =============================================================================
*
* Waybar configuration
*
* Configuration reference: https://github.com/Alexays/Waybar/wiki/Configuration
*
* =========================================================================== */
/* -----------------------------------------------------------------------------
* Keyframes
* -------------------------------------------------------------------------- */
@ -55,22 +47,34 @@
@define-color teal #8ec07c;
@define-color gray #928374;
/* Reset all styles */
* {
border: none;
border-radius: 0;
min-height: 0;
margin: 0;
padding: 0;
border: none;
font-family: Inconsolata, Inconsolata Nerd Font, FiraCode Nerd Font Mono;
font-weight: bold;
font-size: 14pt;
color: @light;
border-radius: 20px;
background: transparent;
}
/* The whole bar */
#waybar {
background: @dark;
color: @light;
font-family: Inconsolata, Inconsolata Nerd Font, FiraCode Nerd Font Mono;
font-size: 14pt;
font-weight: bold;
/*-----module groups----*/
.modules-right {
padding: 3px;
background-color: @dark;
margin: 0 5px 5px 0;
border-radius: 10px;
}
.modules-center {
padding: 3px;
background-color: @dark;
margin: 0 0 5px 0;
border-radius: 10px;
}
.modules-left {
padding: 3px;
margin: 0 0 5px 5px;
background-color: @dark;
border-radius: 10px;
}
/* All modules */
@ -82,7 +86,8 @@
#network,
#pulseaudio,
#temperature,
#tray {
#tray,
#disk {
background: transparent;
color: @light;
padding-left: 10px;
@ -132,7 +137,6 @@
animation-duration: 3s;
}
/* And now modules themselves in their respective order */
/* Workspaces stuff */
#workspaces button {
@ -144,60 +148,14 @@
}
#workspaces button.focused {
border-bottom: 2px solid @orange;
border: 1px solid @orange;
}
#workspaces button.visible:not(.focused) {
border-bottom: 2px solid @gray;
border: 1px solid @gray;
}
#workspaces button.urgent {
color: @orange;
}
#mode { /* Shows current Sway mode (resize etc.) */
padding-left: 10px;
color: @light;
background: @red;
}
#window {
margin-right: 30px;
margin-left: 30px;
}
#pulseaudio {
border-bottom: 2px solid @red;
}
#network {
border-bottom: 2px solid @orange;
}
#memory {
border-bottom: 2px solid @yellow;
}
#cpu {
border-bottom: 2px solid @green;
}
#temperature {
border-bottom: 2px solid @teal;
}
#battery {
border-bottom: 2px solid @blue;
}
#tray {
}
#clock {
border-bottom: 2px solid @light;
}
#pulseaudio.muted {
/* No styles */
}

View file

@ -7,9 +7,9 @@
height = 28;
modules-left = [
"sway/workspaces"
"sway/window"
];
modules-center = [
"clock"
];
modules-right = [
"disk"
@ -20,7 +20,6 @@
"temperature"
"battery"
"tray"
"clock"
];
modules = {
"battery" = {
@ -28,7 +27,7 @@
warning = 20;
critical = 10;
};
format = " {capacity}%";
format = " {capacity}%";
format-discharging = "{icon} {capacity}%";
format-icons = [
""

3
modules/fwupd.nix Normal file
View file

@ -0,0 +1,3 @@
{
services.fwupd.enable = true;
}

View file

@ -1,6 +1,7 @@
{
# enable sway, so we have a swaylock pam config
programs.sway.enable = true;
programs.sway.package = null;
# autologin
services.greetd = {

View file

@ -1,6 +1,6 @@
{pkgs, config, ...}:
{ pkgs, config, ... }:
let
consoleFont = hiDPI : if hiDPI then "Lat2-Terminus16" else "Lat2-Terminus20";
consoleFont = hiDPI: if hiDPI then "Lat2-Terminus16" else "Lat2-Terminus20";
in
{
imports = [
@ -23,6 +23,7 @@ in
../modules/gc.nix
../modules/sway.nix
../modules/nixld.nix
../modules/fwupd.nix
../secrets/remote-builder.nix
../users/fleaz.nix
@ -59,7 +60,11 @@ in
# Look mum, I'm using all the new shiny stuff!
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# TMP
networking.firewall = {
allowedTCPPorts = [ 3000 ];
};
networking.extraHosts = ''
'';
}