oxidizing

This commit is contained in:
maxstrb 2026-03-14 21:45:57 +01:00
parent a46356a178
commit a9eadc52f3
35 changed files with 726 additions and 1223 deletions

View file

@ -1,26 +1,3 @@
{pkgs, ...}: {
home = {
username = "maxag";
homeDirectory = "/home/maxag";
stateVersion = "25.11";
};
programs.home-manager.enable = true;
home.packages = with pkgs; [
brightnessctl
];
imports = [
./hyprland.nix
../modules/nvf.nix
../modules/stylix.nix
../modules/programming.nix
../modules/multimedia.nix
../modules/communication.nix
../modules/rice.nix
../modules/shells.nix
../modules/passwords.nix
../modules/create-project/create-project.nix
];
{
imports = [../modules/default.nix];
}

View file

@ -1,70 +0,0 @@
{
pkgs,
inputs,
...
}: {
imports = [
../modules/hyprland.nix
];
home.packages = with pkgs; [
bluez
];
wayland.windowManager.hyprland = {
settings = {
bind = [
"SUPER ALT, left, exec, hyprctl keyword monitor eDP-1,preferred,auto,1,transform,3 && hyprctl keyword input:touchdevice:transform 3 && hyprctl keyword input:tablet:transform 3"
"SUPER ALT, right, exec, hyprctl keyword monitor eDP-1,preferred,auto,1,transform,1 && hyprctl keyword input:touchdevice:transform 1 && hyprctl keyword input:tablet:transform 1"
"SUPER ALT, up, exec, hyprctl keyword monitor eDP-1,preferred,auto,1,transform,2 && hyprctl keyword input:touchdevice:transform 2 && hyprctl keyword input:tablet:transform 2"
"SUPER ALT, down, exec, hyprctl keyword monitor eDP-1,preferred,auto,1,transform,0 && hyprctl keyword input:touchdevice:transform 0 && hyprctl keyword input:tablet:transform 0"
];
workspace = [
"1, monitor:eDP-1"
"2, monitor:eDP-1"
"3, monitor:eDP-1"
"4, monitor:eDP-1"
"5, monitor:eDP-1"
"6, monitor:eDP-1"
"7, monitor:eDP-1"
"8, monitor:eDP-1"
"9, monitor:eDP-1"
"10, monitor:eDP-1"
];
};
extraConfig = "
monitor=eDP-1,1920x1200@60,0x0,1
xwayland {
force_zero_scaling = true
}
";
};
programs.hyprpanel = {
settings = {
bar = {
layouts = {
"*" = {
left = [
"dashboard"
"workspaces"
];
middle = [];
right = [
"volume"
"bluetooth"
"clock"
"systray"
"network"
"battery"
"notifications"
];
};
};
};
};
};
}