49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{pkgs, ...}: {
|
|
imports = [../personal.nix];
|
|
home.username = "xenia";
|
|
home.homeDirectory = "/home/xenia";
|
|
home.stateVersion = "22.11";
|
|
home.packages = with pkgs; [prismlauncher];
|
|
|
|
# xdg.configFile."hypr/hyprpaper.conf".source = ../desktop/config/hypr/hyprpaper-Vanguard.conf;
|
|
# wayland.windowManager.hyprland.extraConfig = ''
|
|
# source=./common.conf
|
|
|
|
# misc {
|
|
# vrr = 2
|
|
# }
|
|
|
|
# monitor=DP-1,highrr,auto,1
|
|
# monitor=HDMI-A-1,highres,auto,2
|
|
|
|
# exec-once = hyprpaper
|
|
# exec-once = waybar
|
|
# '';
|
|
# programs.waybar = {
|
|
# style = ''
|
|
# @import 'common.css';
|
|
# '';
|
|
# settings = {
|
|
# main = {
|
|
# "include" = [
|
|
# "~/.config/waybar/modules.json"
|
|
# "~/.config/waybar/layout.json"
|
|
# ];
|
|
# "modules-left" = [ "custom/launcher" "cpu" "memory" "temperature" ];
|
|
# "modules-center" = [ "wlr/workspaces" ];
|
|
# "modules-right" = [
|
|
# "pulseaudio"
|
|
# "bluetooth"
|
|
# "network"
|
|
# "backlight"
|
|
# "battery"
|
|
# "battery#bat2"
|
|
# "clock"
|
|
# "tray"
|
|
# "custom/power"
|
|
# ];
|
|
# };
|
|
# };
|
|
# };
|
|
}
|