32 lines
709 B
Nix
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
|
|
];
|
|
};
|
|
};
|
|
}
|