51 lines
1.8 KiB
Nix
51 lines
1.8 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
services.xserver = {
|
|
enable = true;
|
|
xkb.layout = "us";
|
|
xkb.variant = "intl";
|
|
};
|
|
|
|
services.displayManager.ly = {
|
|
enable = true;
|
|
settings = {
|
|
path = "/run/current-system/sw/bin";
|
|
restart_cmd = "/run/current-system/systemd/bin/systemctl reboot";
|
|
service_name = "ly";
|
|
setup_cmd = "/nix/store/vksm36a608j7szhxn0bcnv5rna9xhxk5-xsession-wrapper";
|
|
shutdown_cmd = "/run/current-system/systemd/bin/systemctl poweroff";
|
|
term_reset_cmd = "/nix/store/yijhn548p2589pkybgvbhll09bqsxy0q-ncurses-6.5/bin/tput reset";
|
|
term_restore_cursor_cmd = "/nix/store/yijhn548p2589pkybgvbhll09bqsxy0q-ncurses-6.5/bin/tput cnorm";
|
|
# tty = "1";
|
|
waylandsessions = "/nix/store/1dp80bvcnaq30mh6728lc34xhbjp15zx-desktops/share/wayland-sessions";
|
|
x_cmd = "/nix/store/a1v7dyv80s5xd19in89h9i3wnll02ns5-xserver-wrapper";
|
|
xauth_cmd = "/nix/store/s7c6j1cp1xmx8l4ggwx90f51zn9ih0wz-xauth-1.1.4/bin/xauth";
|
|
xsessions = "/nix/store/1dp80bvcnaq30mh6728lc34xhbjp15zx-desktops/share/xsessions";
|
|
bigclock = "en";
|
|
bigclock_seconds = "true";
|
|
box_title = "Puter";
|
|
brightness_down_cmd = "bindsym XF86MonBrightnessDown exec light - U 5";
|
|
brightness_up_cmd = "bindsym XF86MonBrightnessUp exec light - A 5";
|
|
animation = "colormix";
|
|
battery_id = "BAT0";
|
|
bg = "0x00000000";
|
|
# Error background color id
|
|
error_bg = "0x00000000";
|
|
# Default is red and bold
|
|
error_fg = "0x01FF0000";
|
|
# Color mixing animation first color id
|
|
colormix_col1 = "0x66537B";
|
|
# Color mixing animation second color id
|
|
colormix_col2 = "0x292134";
|
|
# Color mixing animation third color id
|
|
colormix_col3 = "0x110D13";
|
|
# Foreground color id
|
|
fg = "0xB4BEFE";
|
|
};
|
|
};
|
|
# services.displayManager.gdm.enable = true;
|
|
}
|