fix submodule

This commit is contained in:
2025-05-21 19:53:56 +01:00
parent 04929cacfc
commit efaf003462
6 changed files with 157 additions and 2 deletions
Submodule emmathorpe deleted from c28d5f2b8b
+66
View File
@@ -0,0 +1,66 @@
{ config, pkgs, inputs, lib, ... }:
{
programs.zsh = {
enable = true;
enableCompletion = true;
enableVteIntegration = true;
autosuggestion.enable = true;
historySubstringSearch.enable = true;
history.append = true;
oh-my-zsh = {
enable = true;
plugins = [ "git" "man" "history-substring-search" ];
theme = "robbyrussell";
};
syntaxHighlighting.enable = true;
initContent = lib.mkOrder 1500 ''
if [ -z $DISPLAY ] && [ "$(tty)" = "/dev/tty1" ]; then
exec sway
fi
if [ "$SSH_CLIENT" ] || [ "$SSH_TTY" ]; then
export PS1=%M\ $PS1
fi
'';
envExtra = ''
export EDITOR=vim
alias cls=clear
'';
};
programs.tmux = {
enable = true;
reverseSplit = true;
terminal = "tmux-direct";
newSession = true;
keyMode = "vi";
historyLimit = 50000;
extraConfig = ''
# Enable mouse support
set -g mouse on
# Set pane navigation
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
'';
};
home.stateVersion = "25.05";
home.pointerCursor = {
gtk.enable = true;
x11 = {
enable = true;
defaultCursor = "Adwaita";
};
package = pkgs.adwaita-icon-theme;
name = "Adwaita";
size = 24;
};
home.packages = [
pkgs.element-desktop
];
home.sessionVariables = {
MOZ_USE_XINPUT2 = "1";
# only needed for Sway
XDG_CURRENT_DESKTOP = "sway";
};
}
+31
View File
@@ -0,0 +1,31 @@
{ config, lib, pkgs, ... }:
{
#programs.zsh = {
# enable = true;
# ohMyZsh = {
# enable = true;
# plugins = [ "git" "man" "history-substring-search" ];
# theme = "robbyrussell";
# };
# syntaxHighlighting.enable = true;
# autosuggestions.enable = true;
#};
#programs.tmux = {
# enable = true;
# reverseSplit = true;
# terminal = "tmux-direct";
# newSession = true;
# keyMode = "vi";
# historyLimit = 50000;
# extraConfig = ''
# # Enable mouse support
# set -g mouse on
# # Set pane navigation
# bind -n M-Left select-pane -L
# bind -n M-Right select-pane -R
# bind -n M-Up select-pane -U
# bind -n M-Down select-pane -D
# '';
#};
}
+36
View File
@@ -0,0 +1,36 @@
{ config, lib, options, pkgs, ... }:
let
cfg = config.features.swayDesktop;
in
{
options = {
features.swayDesktop.enable = lib.mkEnableOption "Enable Sway Desktop";
};
config = lib.mkIf cfg.enable {
programs.sway = {
enable = true;
wrapperFeatures.gtk = true;
extraSessionCommands = ''
# QT
export QT_QPA_PLATFORM="wayland;xcb"
export QT_QPA_PLATFORMTHEME=qt5ct
# SDL
export SDL_VIDEODRIVER=wayland
# Java
export _JAVA_AWT_WM_NONREPARENTING=1
# Misc
export CLUTTER_BACKEND=wayland
export WINIT_UNIX_BACKEND=x11
export MOZ_ENABLE_WAYLAND=1
'';
extraPackages = with pkgs; [ brightnessctl foot grim swayidle swaylock i3status-rust sway-launcher-desktop dunst ];
};
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-emoji
font-awesome
];
};
}
+23
View File
@@ -0,0 +1,23 @@
{ config, pkgs, inputs, lib, ... }:
{
programs.zsh.enable = true;
users.users.emmathorpe = {
isNormalUser = true;
home = "/home/emmathorpe";
description = "Emma Thorpe";
extraGroups = [ "wheel" ];
shell = pkgs.zsh;
packages = lib.mkIf (config.features.swayDesktop.enable == true) [
pkgs.legcord
#pkgs.plex-desktop
#pkgs.plexamp
];
};
programs.firefox = lib.mkIf(config.features.swayDesktop.enable == true) {
enable = true;
};
programs.thunderbird = lib.mkIf(config.features.swayDesktop.enable == true) {
enable = true;
};
}