something here caused the issue

This commit is contained in:
do butterflies cry? 2026-02-24 23:43:16 +10:00
parent cd89855ce2
commit 45ff93c873
17 changed files with 345 additions and 85 deletions

View file

@ -1,4 +1,5 @@
{
inputs,
pkgs,
config,
...
@ -29,25 +30,30 @@
wayland.enable = ! config.services.xserver.enable; # experimental
# theme = "corners";
};
# defaultSession = "mango"; # DEBUG
defaultSession =
"hyprland"
+ (
if config.programs.hyprland.withUWSM == true
then "-uwsm"
else null
);
if config.programs.hyprland.withUWSM == true
then "hyprland-uwsm"
else "hyprland";
};
tumbler.enable = true; # Thunar image thumbnail support
gvfs.enable = true; # Thunar mount, trash, and other functionality
};
home-manager.sharedModules = [
inputs.mango.hmModules.mango
];
programs = {
zsh.enable = true;
fish.enable = true;
nix-ld.enable = true;
mango.enable = true;
neovim = {
enable = true;
defaultEditor = true;
@ -105,6 +111,8 @@
sessionVariables = {
# Hint Electrons apps to use Wayland
NIXOS_OZONE_WL = "1";
QT_QPA_PLATFORMTHEME = "xdgdesktopportal";
};
# systemPackages = with pkgs; [
# sddm-theme-corners

View file

@ -82,6 +82,7 @@
ripgrep
viddy # modern `watch` command
timg # terminal image (sixel) viewer
wormhole-rs
# Pretty necessary
git
@ -92,6 +93,7 @@
vim
powertop
imagemagick
usbutils
# "Standard" Unix Commands
file

View file

@ -66,6 +66,7 @@
# primary user
cry = {
isNormalUser = true;
createHome = true;
home = "/home/cry";
extraGroups = ["wheel"];
openssh.authorizedKeys.keys = lib.mkDefault [