Files
nix/home/arrakis/default.nix
T
2025-02-04 11:46:36 +00:00

82 lines
1.5 KiB
Nix

{
inputs,
lib,
pkgs,
config,
outputs,
...
}:
{
imports = [
inputs.nix-colors.homeManagerModule
inputs.nixvim.homeManagerModules.nixvim
../common/programs/default.nix
../common/programs/desktop
../common/programs/hyprland
../common/programs/ghostty.nix
../common/programs/syncthing.nix
../common/programs/gpg.nix
../common/features/xdg.nix
../common/features/bluetooth.nix
./monitors.nix
];
home.sessionVariables = {
XDG_SESSION_TYPE = "wayland";
};
wayland.windowManager.hyprland.settings = {
workspace = [
"1, monitor:DP-1"
"2, monitor:eDP-1"
"3, monitor:eDP-1"
"4, monitor:eDP-1"
];
windowrulev2 = [
# ethui-dev
# "workspace 2 silent, class:ethui"
# "float, class:ethui"
# "size 800 800, class:ethui"
# "move 100%-800 100%-800, class:ethui"
# "noinitialfocus, class:ethui"
];
env = [
"GDK_SCALE, 1.5"
];
};
programs.hyprpanel.layout = {
"bar.layouts" = {
"0" = {
"left" = [
"dashboard"
"workspaces"
"windowtitle"
];
"middle" = [ "media" ];
"right" = [
"volume"
"network"
"power"
"bluetooth"
"systray"
"clock"
"notifications"
];
};
"*" = {
"left" = [ ];
"middle" = [ ];
"right" = [ ];
};
};
};
home = {
username = lib.mkDefault "naps62";
stateVersion = lib.mkDefault "24.05";
};
}