e8086e8528
plugins, new cursor, light/dark themes, new app launcher, ...
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{
|
|
inputs,
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
outputs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
inputs.nix-colors.homeManagerModule
|
|
inputs.nixvim.homeModules.nixvim
|
|
../common/programs/default.nix
|
|
../common/programs/desktop
|
|
../common/programs/zen-browser.nix
|
|
../common/programs/hyprland
|
|
../common/programs/kitty
|
|
../common/programs/syncthing.nix
|
|
../common/programs/unity.nix
|
|
../common/programs/ethui.nix
|
|
../common/programs/gpg.nix
|
|
../common/features/xdg.nix
|
|
../common/features/downloads-cleanup.nix
|
|
../common/programs/3d.nix
|
|
../common/features/bluetooth.nix
|
|
./monitors.nix
|
|
];
|
|
|
|
wayland.windowManager.hyprland.settings = {
|
|
exec-once = [
|
|
"hyprctl setcursor Nordzy-cursors 32"
|
|
];
|
|
|
|
workspace = [
|
|
"1, monitor:DP-3"
|
|
"2, monitor:eDP-1"
|
|
"3, monitor:eDP-1"
|
|
"4, monitor:eDP-1"
|
|
];
|
|
|
|
windowrule = [
|
|
"no_initial_focus on, match:class bevy-.*"
|
|
"float on, match:class bevy-.*"
|
|
"size 800 600, match:class bevy-.*"
|
|
"move 100%-800 100%-600, match:class bevy-.*"
|
|
];
|
|
};
|
|
|
|
home = {
|
|
username = lib.mkDefault "naps62";
|
|
stateVersion = lib.mkDefault "24.05";
|
|
};
|
|
}
|