2026-01-27

This commit is contained in:
Weckyy702
2026-01-27 16:56:07 +01:00
parent 156bd44710
commit 3defad84fb
6 changed files with 112 additions and 20 deletions

View File

@@ -1,6 +1,7 @@
{ config, pkgs, username, inputs, ...}: {
imports = [
inputs.nixvim.homeModules.nixvim
inputs.catppuccin.homeModules.catppuccin
];
#NOTE: MUST be kept up to date with nixpkgs!
@@ -12,15 +13,24 @@
home.packages = with pkgs; [
mpv
bitwarden-desktop
feh
grim
slurp
xdg-user-dirs
libqalculate
];
programs.wofi.enable = true;
catppuccin.enable = true;
wayland.windowManager.hyprland = {
enable = true;
settings = import ./hyprland/settings.nix;
};
#TODO: decide on waybar
programs.nixvim = {
enable = true;
@@ -71,7 +81,7 @@
# For automatic login
profileExtra = ''
if [ -z "$WAYLAND_DISPLAY" ] && [ "$XDG_VTNR" = 1 ]; then
exec hyprland
exec hyprland > /var/log/hypr.log
fi
'';