Add bitwarden and dedicated workspace
Add back shell shortcuts to update
This commit is contained in:
parent
f56d3bdb21
commit
4f7c732509
|
@ -133,11 +133,17 @@ windowrule = workspace 4,(Signal)
|
|||
windowrule = workspace 4,(fractal)
|
||||
windowrule = workspace 4,(discord)
|
||||
|
||||
# 5: remote
|
||||
# 5: pass
|
||||
bind = SUPER, R, moveworkspacetomonitor, 5 current
|
||||
bind = SUPER, R, workspace, 5
|
||||
bind = SUPER SHIFT, R, movetoworkspace, 5
|
||||
windowrule = workspace 5,(Nxplayer.bin)
|
||||
windowrule = workspace 5,(Bitwarden)
|
||||
|
||||
# 6: remote
|
||||
bind = SUPER, R, moveworkspacetomonitor, 6 current
|
||||
bind = SUPER, R, workspace, 6
|
||||
bind = SUPER SHIFT, R, movetoworkspace, 6
|
||||
windowrule = workspace 6,(Nxplayer.bin)
|
||||
windowrule = float,(Nxplayer.bin)
|
||||
windowrule = center,(Nxplayer.bin)
|
||||
|
||||
|
|
|
@ -8,7 +8,8 @@
|
|||
"2" = "";
|
||||
"3" = "";
|
||||
"4" = "";
|
||||
"5" = "";
|
||||
"5" = "";
|
||||
"6" = "";
|
||||
urgent = "";
|
||||
};
|
||||
sort-by-number = true;
|
||||
|
|
|
@ -1,12 +1,8 @@
|
|||
{
|
||||
pkgs,
|
||||
shell,
|
||||
...
|
||||
}: let
|
||||
flakeURL = "git+https://git.xenia.me.uk/xenia/nixos.git?ref=main";
|
||||
{ pkgs, shell, ... }:
|
||||
let flakeURL = "git+https://git.xenia.me.uk/xenia/nixos.git?ref=main";
|
||||
in {
|
||||
nix = {
|
||||
settings.experimental-features = ["nix-command" "flakes"];
|
||||
settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
gc = {
|
||||
automatic = true;
|
||||
dates = "daily";
|
||||
|
@ -20,7 +16,13 @@ in {
|
|||
system.autoUpgrade.flake = flakeURL;
|
||||
environment = {
|
||||
localBinInPath = true;
|
||||
systemPackages = with pkgs; [distrobox];
|
||||
systemPackages = with pkgs; [ distrobox ];
|
||||
shellAliases = {
|
||||
nou = "sudo nixos-rebuild switch --flake ${flakeURL}";
|
||||
noul = "sudo nixos-rebuild switch --flake $HOME/.config/home-manager";
|
||||
hms = "${pkgs.home-manager}/bin/home-manager switch --flake ${flakeURL}";
|
||||
hmsl = "${pkgs.home-manager}/bin/home-manager switch --flake $HOME/.config/home-manager";
|
||||
};
|
||||
};
|
||||
networking.networkmanager.enable = true;
|
||||
services.power-profiles-daemon.enable = true;
|
||||
|
@ -42,7 +44,7 @@ in {
|
|||
noto-fonts-emoji
|
||||
roboto
|
||||
# nerdfonts
|
||||
(nerdfonts.override {fonts = ["FiraCode"];})
|
||||
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||
];
|
||||
fontconfig = {
|
||||
enable = true;
|
||||
|
@ -50,10 +52,10 @@ in {
|
|||
# the reason there's Noto Color Emoji everywhere is to override DejaVu's
|
||||
# B&W emojis that would sometimes show instead of some Color emojis
|
||||
defaultFonts = {
|
||||
serif = ["Noto Serif" "Noto Color Emoji"];
|
||||
sansSerif = ["Noto Sans" "Noto Color Emoji"];
|
||||
monospace = ["FiraCode Nerd Font" "Noto Color Emoji"];
|
||||
emoji = ["Noto Color Emoji"];
|
||||
serif = [ "Noto Serif" "Noto Color Emoji" ];
|
||||
sansSerif = [ "Noto Sans" "Noto Color Emoji" ];
|
||||
monospace = [ "FiraCode Nerd Font" "Noto Color Emoji" ];
|
||||
emoji = [ "Noto Color Emoji" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
pavucontrol
|
||||
grim
|
||||
slurp
|
||||
bitwarden
|
||||
signal-desktop
|
||||
libreoffice
|
||||
zotero
|
||||
|
|
Loading…
Reference in a new issue