Compare commits
10 Commits
9c00f3c466
...
master
Author | SHA1 | Date | |
---|---|---|---|
![]() |
c3aba30c34 | ||
![]() |
160ea2abc7 | ||
![]() |
4747ba1c58 | ||
![]() |
a4a76bd91f | ||
![]() |
9999dc3baf | ||
![]() |
009edeb259 | ||
![]() |
617119491f | ||
![]() |
76bb9c4d60 | ||
![]() |
fb10bb05eb | ||
![]() |
bfaf0a1b9c |
@ -27,7 +27,6 @@
|
|||||||
bind -n M-Up select-pane -U
|
bind -n M-Up select-pane -U
|
||||||
bind -n M-Down select-pane -D
|
bind -n M-Down select-pane -D
|
||||||
|
|
||||||
set-option -s status-interval 1
|
|
||||||
set -g status-left-length 100
|
set -g status-left-length 100
|
||||||
set -g status-right-length 100
|
set -g status-right-length 100
|
||||||
set -g status-position top
|
set -g status-position top
|
||||||
@ -37,8 +36,6 @@
|
|||||||
set -g @plugin 'o0th/tmux-nova'
|
set -g @plugin 'o0th/tmux-nova'
|
||||||
|
|
||||||
set -g @nova-nerdfonts true
|
set -g @nova-nerdfonts true
|
||||||
set -g @nova-nerdfonts-left
|
|
||||||
set -g @nova-nerdfonts-right
|
|
||||||
|
|
||||||
set -g @nova-pane-active-border-style "#44475a"
|
set -g @nova-pane-active-border-style "#44475a"
|
||||||
set -g @nova-pane-border-style "#282a36"
|
set -g @nova-pane-border-style "#282a36"
|
||||||
|
17
hosts/default/system/chromium.nix
Normal file
17
hosts/default/system/chromium.nix
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
chromium
|
||||||
|
];
|
||||||
|
programs.chromium = {
|
||||||
|
enable = true;
|
||||||
|
extensions = [
|
||||||
|
"eimadpbcbfnmbkopoojfekhnkhdbieeh" # Dark Reader
|
||||||
|
];
|
||||||
|
extraOpts = {
|
||||||
|
"BrowserSignin" = 0;
|
||||||
|
"SyncDisabled" = true;
|
||||||
|
"PasswordManagerEnabled" = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
@ -15,5 +15,6 @@
|
|||||||
./boot.nix
|
./boot.nix
|
||||||
./hw.nix
|
./hw.nix
|
||||||
./radio.nix
|
./radio.nix
|
||||||
|
./chromium.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
# System utilities
|
# System utilities
|
||||||
unzip
|
unzip
|
||||||
yt-dlp
|
|
||||||
inetutils
|
inetutils
|
||||||
git
|
git
|
||||||
wget
|
wget
|
||||||
@ -20,7 +19,6 @@
|
|||||||
gdb
|
gdb
|
||||||
vscode
|
vscode
|
||||||
neovide
|
neovide
|
||||||
chromium
|
|
||||||
|
|
||||||
# Command-line utilities
|
# Command-line utilities
|
||||||
neofetch
|
neofetch
|
||||||
@ -94,6 +92,7 @@
|
|||||||
cubicsdr
|
cubicsdr
|
||||||
gqrx
|
gqrx
|
||||||
multimon-ng
|
multimon-ng
|
||||||
|
stellarium
|
||||||
|
|
||||||
# Miscellaneous
|
# Miscellaneous
|
||||||
cava
|
cava
|
||||||
@ -102,8 +101,10 @@
|
|||||||
wf-recorder
|
wf-recorder
|
||||||
qbittorrent
|
qbittorrent
|
||||||
superTuxKart
|
superTuxKart
|
||||||
|
adwaita-icon-theme
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
fonts = {
|
fonts = {
|
||||||
fontconfig.enable = true;
|
fontconfig.enable = true;
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
|
@ -50,6 +50,9 @@
|
|||||||
programs = {
|
programs = {
|
||||||
nix-ld.enable = true;
|
nix-ld.enable = true;
|
||||||
fish.enable = true;
|
fish.enable = true;
|
||||||
|
dconf = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.etc = {
|
environment.etc = {
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" =
|
||||||
{ device = "/dev/disk/by-label/ESP";
|
{ device = "/dev/disk/by-uuid/9AA3-DC16";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0022" "dmask=0022" ];
|
options = [ "fmask=0022" "dmask=0022" ];
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user