A bunch of changes. I am not keeping track of this repo.

This commit is contained in:
Jack Mechem 2025-11-26 12:21:32 -08:00
parent 6544f1e835
commit 157aa8bba7
9 changed files with 127 additions and 83 deletions

View file

@ -1,15 +1,17 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [pkgs.sway-contrib.grimshot
waypaper
hyprpaper
swaybg
lua-language-server
nil
nixfmt-rfc-style
stylua
home.packages = with pkgs; [
pkgs.sway-contrib.grimshot
waypaper
hyprpaper
swaybg
lua-language-server
nil
nixfmt-rfc-style
stylua
lunar-client
];
lunar-client
discord
];
}

View file

@ -1,4 +1,5 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
wayland.windowManager.hyprland = {
enable = true;
extraConfig = ''
@ -28,6 +29,9 @@
exec-once = gtkbar
exec-once=dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
#env = XDG_CONFIG_HOME,/home/jack/.config
# Source a file (multi-file configs)
# source = ~/.config/hypr/myColors.conf
@ -46,6 +50,11 @@
# env = XDG_SCREENSHOTS_DIR,/home/jack/Photos/Screenshots
# env = XCURSOR_THEME,Bibata-Modern-Ice
device {
name = synaptics-tm3276-022
enabled = false
}
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
input {
kb_layout = us
@ -63,6 +72,8 @@
accel_profile = flat
sensitivity = 1.0 # -1.0 to 1.0, 0 means no modification.
}
general {
@ -137,11 +148,6 @@
# new_is_master = true
# }
gestures {
# See https://wiki.hyprland.org/Configuring/Variables/ for more
workspace_swipe = off
}
misc {
# See https://wiki.hyprland.org/Configuring/Variables/ for more
force_default_wallpaper = 0 # Set to 0 or 1 to disable the anime mascot wallpapers

View file

@ -0,0 +1,13 @@
{
config,
lib,
pkgs,
...
}:
{
home.shellAliases = {
nixreb = "sudo nixos-rebuild switch --flake /home/jack/nixos/#t480";
v = "nvim";
};
}

View file

@ -1,4 +1,5 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
programs.tmux = {
enable = true;
baseIndex = 1;
@ -66,9 +67,8 @@
set -g status-left-length 50
set -g status-right-length 140
set -g status-justify centre # center align window list
set -g status-bg "colour8"
set -g status-fg "colour7"
set -g status-bg "colour11"
set -g status-fg "colour0"
'';
};
}

View file

@ -1,28 +1,31 @@
{ pkgs, ... }:
let
shellAliases = {
rebuild-nix = "sudo nixos-rebuild switch --flake /home/jack/nixos/#t480";
};
in
{
programs.zsh = {
# let
# shellAliases = {
# rebuild-nix = "sudo nixos-rebuild switch --flake /home/jack/nixos/#t480";
# };
# in
{
programs.zsh = {
enable = true;
# inherit shellAliases;
syntaxHighlighting.enable = true;
autosuggestion.enable = true;
initContent = ''
fastfetch -c examples/11
'';
oh-my-zsh = {
enable = true;
inherit shellAliases;
syntaxHighlighting.enable = true;
autosuggestion.enable = true;
};
programs.zsh.oh-my-zsh = {
enable = true;
theme = "gentoo";
plugins = [
"git"
"kubectl"
"helm"
"docker"
];
};
programs.bash = {
enable = true;
inherit shellAliases;
theme = "gentoo";
plugins = [
"git"
"kubectl"
"helm"
"docker"
];
};
};
programs.bash = {
enable = true;
# inherit shellAliases;
};
}