nix-config/home/adalbert.nix
GHOSCHT 83f3edf2d3
Hyprland: Make config more universal
adalbert-specific config pulled into adalbert.nix
2024-12-15 12:03:43 +01:00

32 lines
709 B
Nix

{ inputs, ... }: {
imports = [
./global
./features/desktop/awesome
./features/desktop/hyprland
./features/games
./features/coding
./features/desktop/common/alacritty.nix
];
home.packages = [
inputs.picokontroller.packages.x86_64-linux.default
];
nixpkgs = {
config = {
permittedInsecurePackages = [
"electron-25.9.0"
"nix-2.15.3"
];
};
};
wayland.windowManager.hyprland = {
settings = {
exec-once = [
"picokontroller" # volume & light control
"easyeffects --gapplication-service"
"xrandr --output DP-3 --primary" # since wayland doesn't have a concept of primary monitors
];
};
};
}