Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c5c79482d1 | ||
|
|
75698e050c | ||
|
|
f55c292fc3 |
5 changed files with 64 additions and 12 deletions
|
|
@ -21,7 +21,7 @@ passwordChars="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890~!@
|
|||
passwordCharsselection=0
|
||||
passwordLength=8
|
||||
pwgenExecutable=/run/current-system/sw/bin/pwgen
|
||||
startMinimized=true
|
||||
startMinimized=false
|
||||
templateAllFields=false
|
||||
useAutoclear=true
|
||||
useAutoclearPanel=true
|
||||
|
|
|
|||
|
|
@ -85,9 +85,6 @@
|
|||
config = {
|
||||
bars = [];
|
||||
keybindings = lib.mkForce {};
|
||||
startup = [
|
||||
{ command = "qtpass"; notification = false; }
|
||||
];
|
||||
};
|
||||
|
||||
extraConfig = ''
|
||||
|
|
|
|||
|
|
@ -57,6 +57,7 @@
|
|||
enable = true;
|
||||
defaultApplications = {
|
||||
"text/plain" = [ "VimInKitty.desktop" ];
|
||||
"application/x-shellscript" = [ "VimInKitty.desktop" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{ pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
# Basic Utilities
|
||||
bc pv killall zip unzip unrar-wrapper unar units
|
||||
bc pv killall zip unzip unrar-wrapper unar units wget curl
|
||||
|
||||
# System Monitoring / TUI QoL Tools
|
||||
btop iotop tmux byobu
|
||||
|
|
|
|||
|
|
@ -1,8 +1,11 @@
|
|||
{ pkgs, ... }: {
|
||||
home.stateVersion = "24.11";
|
||||
|
||||
imports = [
|
||||
../../home-manager/programs/thunderbird.nix
|
||||
home.packages = with pkgs; [
|
||||
#ventoy
|
||||
yt-dlp
|
||||
arduino
|
||||
distrobox
|
||||
prismlauncher
|
||||
];
|
||||
|
||||
xsession.windowManager.i3.extraConfig = ''
|
||||
|
|
@ -26,8 +29,48 @@
|
|||
text = ''
|
||||
xrandr \
|
||||
--output eDP-1 --off \
|
||||
--output DP-2-1 --mode 3840x2160 --rate 30 --right-of DP-2-2 \
|
||||
--output DP-2-2 --mode 3840x2160 --rate 30 --primary
|
||||
--output DP-2-2 --mode 3840x2160 --rate 30 --rotate normal --right-of DP-2-1 \
|
||||
--output DP-2-1 --mode 3840x2160 --rate 30 --rotate normal --primary
|
||||
i3-msg restart
|
||||
'';
|
||||
};
|
||||
"latitude/minceraft" = {
|
||||
executable = true;
|
||||
text = ''
|
||||
xrandr \
|
||||
--output eDP-1 --off \
|
||||
--output DP-2-2 --mode 3840x2160 --rate 30 --rotate right --right-of DP-2-1 \
|
||||
--output DP-2-1 --mode 1920x1080 --rate 60 --rotate normal --primary
|
||||
i3-msg restart
|
||||
'';
|
||||
};
|
||||
"latitude/deskrotateright" = {
|
||||
executable = true;
|
||||
text = ''
|
||||
xrandr \
|
||||
--output eDP-1 --off \
|
||||
--output DP-2-2 --mode 3840x2160 --rate 30 --rotate right --right-of DP-2-1 \
|
||||
--output DP-2-1 --mode 3840x2160 --rate 30 --rotate normal --primary
|
||||
i3-msg restart
|
||||
'';
|
||||
};
|
||||
"latitude/deskrotateleft" = {
|
||||
executable = true;
|
||||
text = ''
|
||||
xrandr \
|
||||
--output eDP-1 --off \
|
||||
--output DP-2-2 --mode 3840x2160 --rate 30 --rotate normal --right-of DP-2-1 --primary \
|
||||
--output DP-2-1 --mode 3840x2160 --rate 30 --rotate left
|
||||
i3-msg restart
|
||||
'';
|
||||
};
|
||||
"latitude/deskrotateboth" = {
|
||||
executable = true;
|
||||
text = ''
|
||||
xrandr \
|
||||
--output eDP-1 --off \
|
||||
--output DP-2-2 --mode 3840x2160 --rate 30 --rotate right --right-of DP-2-1 \
|
||||
--output DP-2-1 --mode 3840x2160 --rate 30 --rotate left --primary
|
||||
i3-msg restart
|
||||
'';
|
||||
};
|
||||
|
|
@ -36,8 +79,8 @@
|
|||
text = ''
|
||||
xrandr \
|
||||
--output eDP-1 --mode 1920x1080 --left-of DP-2-2 \
|
||||
--output DP-2-1 --mode 3840x2160 --rate 30 --right-of DP-2-2 \
|
||||
--output DP-2-2 --mode 3840x2160 --rate 30 --primary
|
||||
--output DP-2-2 --mode 3840x2160 --rate 30 --rotate normal --right-of DP-2-1 \
|
||||
--output DP-2-1 --mode 3840x2160 --rate 30 --rotate normal --primary
|
||||
i3-msg restart
|
||||
'';
|
||||
};
|
||||
|
|
@ -52,5 +95,16 @@
|
|||
i3-msg restart
|
||||
'';
|
||||
};
|
||||
|
||||
"latitude/nvidia/desk" = {
|
||||
executable = true;
|
||||
text = ''
|
||||
xrandr \
|
||||
--output eDP-1-1 --off \
|
||||
--output DP-1-2-1 --mode 3840x2160 --rate 30 --right-of DP-1-2-2 \
|
||||
--output DP-1-2-2 --mode 3840x2160 --rate 30 --primary
|
||||
i3-msg restart
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue