remove old files

This commit is contained in:
2025-05-21 19:48:14 +01:00
parent 56aa234efe
commit 04929cacfc
3 changed files with 0 additions and 85 deletions
-31
View File
@@ -1,31 +0,0 @@
{ 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
@@ -1,36 +0,0 @@
{ 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 ];
};
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-emoji
font-awesome
];
};
}
-18
View File
@@ -1,18 +0,0 @@
{ config, pkgs, lib, ... }:
{
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.discord
];
};
programs.firefox = lib.mkIf(config.features.swayDesktop.enable == true) {
enable = true;
};
}