38 lines
848 B
Nix
38 lines
848 B
Nix
{ ... }:
|
|
let
|
|
monitors = [
|
|
"DP-1"
|
|
"DP-2"
|
|
];
|
|
in
|
|
{
|
|
imports =
|
|
map (x: ../../../home-manager + x) [
|
|
"/features/development/development.nix"
|
|
"/features/development/docker.nix"
|
|
"/features/development/haskell.nix"
|
|
"/features/eww"
|
|
"/features/gaming.nix"
|
|
"/features/linux-desktop.nix"
|
|
"/features/notes.nix"
|
|
]
|
|
++ [
|
|
(import ../../../home-manager/features/wallpaper.nix monitors)
|
|
];
|
|
|
|
home.stateVersion = "24.11";
|
|
|
|
home.username = "drew";
|
|
home.homeDirectory = "/home/drew";
|
|
|
|
programs.git = {
|
|
userName = "Drew Haven";
|
|
userEmail = "drew.haven@gmail.com";
|
|
};
|
|
|
|
# Set up eww here because it's based on the monitor configuration
|
|
wayland.windowManager.hyprland.settings.exec-once = [
|
|
"sleep 2 && eww open-many primary-statusbar secondary-statusbar launcher"
|
|
];
|
|
}
|