From 7115120e67185d5db8b96b7a017348ee63830bb9 Mon Sep 17 00:00:00 2001 From: deadvey Date: Mon, 11 Nov 2024 23:37:12 +0000 Subject: [PATCH] 19 current 2024-11-10 17:01:49 24.05.6463.83fb6c028368 6.6.59 * --- configuration.nix | 1107 ++------------------------------------------- nixos-switch.log | 225 +-------- 2 files changed, 31 insertions(+), 1301 deletions(-) diff --git a/configuration.nix b/configuration.nix index fb2ace3..ab1f2ad 100644 --- a/configuration.nix +++ b/configuration.nix @@ -3,63 +3,11 @@ # and in the NixOS manual (accessible by running ‘nixos-help’). { config, pkgs, ... }: -let - BORDER_WIDTH = "2"; - BORDER_WIDTH_INT = 2; - CORNER_RADIUS = "0"; - CORNER_RADIUS_INT = 0; - # Curves of 2px and 10px radius fits into a curve of 12px radius do border_width+ corner_radius - RECEIVING_CORNER_RADIUS = "0"; - - GAPS_IN = "5"; - GAPS_OUT = "10"; - HALF_OF_GAPS_OUT = "3"; - - BAR_WIDTH_INT = 15; - - WALLPAPER = "$HOME/Pictures/wallpapers/forest.jpg"; - - # Colours - BG = "282828"; - BG0_H = "1d2021"; - BG0_S = "32302f"; - BG0 = "282828"; - BG1 = "3c3836"; - BG2 = "504945"; - BG3 = "665c54"; - BG4 = "7c6f64"; - DARK_GRAY = "928374"; - - FG = "ebdbb2"; - FG0 = "fbf1c7"; - FG1 = "ebdbb2"; - FG2 = "d5c4a1"; - FG3 = "bdae93"; - FG4 = "a89984"; - GRAY = "a89984"; - - DARK_RED = "cc241d"; - DARK_GREEN = "98971a"; - DARK_YELLOW = "d79921"; - DARK_BLUE = "458588"; - DARK_PURPLE = "b16286"; - DARK_AQUA = "689d6a"; - DARK_ORANGE = "d65d0e"; - RED = "db4934"; - GREEN = "b8bb26"; - YELLOW = "dabd2f"; - BLUE = "83a598"; - PURPLE = "d3869b"; - AQUA = "8ec07c"; - ORANGE = "fe8019"; - -in { imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix - ]; # Bootloader. @@ -73,9 +21,15 @@ in # networking.proxy.default = "http://user:password@proxy:port/"; # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; + # Enable Hyprland + programs.hyprland.enable = true; + # Enable networking networking.networkmanager.enable = true; + # Enable NTFS support at boot + boot.supportedFilesystems = [ "ntfs" ]; + # Set your time zone. time.timeZone = "Europe/London"; @@ -93,1048 +47,48 @@ in LC_TELEPHONE = "en_GB.UTF-8"; LC_TIME = "en_GB.UTF-8"; }; - - services = { - xserver.enable = true; - desktopManager = { - plasma6.enable = true; - }; - displayManager = { - sddm.enable = true; - }; - }; - + # Configure keymap in X11 - services.xserver = { - xkb.layout = "gb"; - xkb.variant = ""; + services.xserver.xkb = { + layout = "gb"; + variant = ""; }; - - programs.ydotool.enable = true; # Configure console keymap console.keyMap = "uk"; - # Enable CUPS to print documents. - services.printing.enable = true; - services.avahi = { - enable = true; - nssmdns4 = true; - openFirewall = true; - }; - - - # Enable sound with pipewire. - sound.enable = true; - hardware.pulseaudio.enable = false; - security.rtkit.enable = true; - services.pipewire = { - enable = true; - alsa.enable = true; - alsa.support32Bit = true; - pulse.enable = true; - # If you want to use JACK applications, uncomment this - #jack.enable = true; - - # use the example session manager (no others are packaged yet so this is enabled by default, - # no need to redefine it in your config for now) - #media-session.enable = true; - }; - - # Enable touchpad support (enabled default in most desktopManager). - # services.xserver.libinput.enable = true; - - services.gpm.enable = true; # Mouse support in tty - - # Enable dconf - programs.dconf.enable = true; - # Define a user account. Don't forget to set a password with ‘passwd’. users.users.deadvey = { isNormalUser = true; - description = "Dave Smith"; - extraGroups = [ "networkmanager" "wheel" "ydotool" ]; + description = "deadvey"; + extraGroups = [ "networkmanager" "wheel" ]; + packages = with pkgs; [ + ]; }; - home-manager.users.deadvey = { pkgs, ... }: { - home.packages = with pkgs; [ - thunderbird - gramps - graphviz - qutebrowser - libreoffice - gimp - freetube - prismlauncher - ace-of-penguins - okular - xonotic - keepassxc - tor-browser - gruvbox-plus-icons - gruvbox-gtk-theme - cinny-desktop - ]; - - wayland.windowManager.hyprland.enable = true; - - - home.stateVersion = "24.05"; - - - gtk = { - gtk2 = { - extraConfig = "gtk-application-prefer-dark-theme=0"; - }; - gtk3 = { - extraConfig = { - gtk-application-prefer-dark-theme=0; - }; - }; - gtk4 = { - extraConfig = { - gtk-application-prefer-dark-theme=0; - }; - }; - enable = true; - font.name = "Victor Mono SemiBold 12"; - theme = { - name = "gruvbox-gtk-theme"; - package = pkgs.gruvbox-gtk-theme; - }; - iconTheme = { - name = "gruvbox-plus-icons"; - package = pkgs.gruvbox-plus-icons; - }; - cursorTheme = { - name = "Adwaita"; - package = pkgs.gnome.adwaita-icon-theme; - size = 16; - }; - }; - - xdg.mimeApps = { - enable = true; - defaultApplications = { - # Browser stuff - "text/html" = "qutebrowser.desktop"; - "x-scheme-handler/http" = "qutebrowser.desktop"; - "x-scheme-handler/https" = "qutebrowser.desktop"; - "x-scheme-handler/about" = "qutebrowser.desktop"; - "x-scheme-handler/unknown" = "qutebrowser.desktop"; - - # Image - "image/png" = "com.interversehq.qView.desktop"; - "image/jpg" = "com.interversehq.qView.desktop"; - "image/jpeg" = "com.interversehq.qView.desktop"; - - # Text - "text/plain" = "emacs.desktop"; - - # Audio - "audio/mpeg" = "mpv.desktop"; - "audio/x-mp3" = "mpv.desktop"; - "audio/x-wav" = "mpv.desktop"; - - # Video - "video/mp4" = "mpv.desktop"; - "video/x-matroska" = "mpv.desktop"; - "video/x-msvideo" = "mpv.desktop"; - "video/x-flv" = "mpv.desktop"; - "video/x-mpeg" = "mpv.desktop"; - "video/x-ms-wmv" = "mpv.desktop"; - }; - }; - - programs.bash = { - enable = true; - shellAliases= { - emacs="emacs -nw"; - nixrc="exec $HOME/Code/git/nixos/edit-config.sh"; - ls="eza -l"; - l="lsd"; - }; - bashrcExtra = - ''fastfetch - XDG_SCREENSHOTS_DIR="$HOME/Pictures/other/Screenshots" - export XDG_SCREENSHOTS_DIR - PS1="\n\e[0;35m\$?\n\e[1;31m[\e[0;32m\u\e[0;36m@\e[0;31m\h \e[1;36m\w\e[1;31m]\e[0m\n > "''; - }; - - programs.qutebrowser = { - enable = true; - settings = { - colors = { - completion = { - fg = "#${FG2}"; - odd.bg = "#${BG1}"; - even.bg = "#${BG}"; - category.fg = "#${YELLOW}"; - category.bg = "#${BG}"; - category.border.top = "#${BG}"; - category.border.bottom = "#${BG}"; - item.selected.fg = "#${FG2}"; - item.selected.bg = "#${BG2}"; - item.selected.border.top = "#${BG2}"; - item.selected.border.bottom = "#${BG2}"; - item.selected.match.fg = "#${GREEN}"; - match.fg = "#${GREEN}"; - scrollbar.bg = "#${BG}"; - }; - contextmenu = { - disabled.bg = "#${BG1}"; - disabled.fg = "#${FG3}"; - menu.bg = "#${BG}"; - menu.fg = "#${FG2}"; - selected.bg = "#${BG2}"; - selected.fg = "#${FG2}"; - }; - downloads = { - bar.bg = "#${BG}"; - start.fg = "#${BG}"; - start.bg = "#${BLUE}"; - stop.fg = "#${BG}"; - stop.bg = "#${AQUA}"; - error.fg = "#${RED}"; - }; - hints = { - fg = "#${BG}"; - bg = "#${YELLOW}"; - }; - keyhint = { - fg = "#${FG2}"; - bg = "#${BG}"; - }; - messages = { - error.fg = "#${BG}"; - error.bg = "#${RED}"; - error.border = "#${BG}"; - warning.fg = "#${BG}"; - warning.bg = "#${PURPLE}"; - warning.border = "#${PURPLE}"; - }; - prompts = { - fg = "#${FG2}"; - border = "#${BG}"; - bg = "#${BG}"; - selected.bg = "#${BG}"; - selected.fg = "#${FG2}"; - }; - statusbar = { - normal.fg = "#${GREEN}"; - normal.bg = "#${BG}"; - insert.fg = "#${BG}"; - insert.bg = "#${BLUE}"; - passthrough.fg = "#${BG}"; - passthrough.bg = "#${AQUA}"; - private.fg = "#${BG}"; - private.bg = "#${BG1}"; - command.fg = "#${FG2}"; - command.bg = "#${BG}"; - command.private.fg = "#${FG2}"; - command.private.bg = "#${BG}"; - caret.fg = "#${BG}"; - caret.bg = "#${PURPLE}"; - caret.selection.fg = "#${BG}"; - caret.selection.bg = "#${BLUE}"; - progress.bg = "#${BLUE}"; - url.fg = "#${FG2}"; - url.error.fg = "#${RED}"; - url.hover.fg = "#${FG2}"; - url.success.http.fg = "#${AQUA}"; - url.success.https.fg = "#${GREEN}"; - url.warn.fg = "#${PURPLE}"; - }; - tabs = { - bar.bg = "#${BG}"; - indicator.start = "#${BG}"; - indicator.stop = "#${AQUA}"; - indicator.error = "#${RED}"; - odd.fg = "#${FG2}"; - odd.bg = "#${BG1}"; - even.fg = "#${FG2}"; - even.bg = "#${BG}"; - pinned.even.bg = "#${AQUA}"; - pinned.even.fg = "#${FG0}"; - pinned.odd.bg = "#${GREEN}"; - pinned.odd.fg = "#${FG0}"; - pinned.selected.even.bg = "#${BG3}"; - pinned.selected.even.fg = "#${FG2}"; - pinned.selected.odd.bg = "#${BG3}"; - pinned.selected.odd.fg = "#${FG2}"; - selected.odd.fg = "#${FG2}"; - selected.odd.bg = "#${BG3}"; - selected.even.fg = "#${FG2}"; - selected.even.bg = "#${BG3}"; - }; - }; - }; - }; - - programs.kitty = { - enable = true; - settings = { - cursor_shape = "underline"; - cursor_shape_unfocused = "hollow"; - foreground = "#${FG}"; - background = "#${BG}"; - selection_foreground = "#${BG}"; - selection_background = "#${FG}"; - - color0 = "#${BG1}"; - color8 = "#${BG0}"; - - color1 = "#${RED}"; - color9 = "#${DARK_RED}"; - - color2 = "#${GREEN}"; - color10 = "#${DARK_GREEN}"; - - color3 = "#${YELLOW}"; - color11 = "#${DARK_YELLOW}"; - - color4 = "#${BLUE}"; - color12 = "#${DARK_BLUE}"; - - color5 = "#${PURPLE}"; - color13 = "#${DARK_PURPLE}"; - - color6 = "#${BLUE}"; - color14 = "#${DARK_BLUE}"; - - color7 = "#${FG0}"; - color15 = "#${FG1}"; - }; - }; - - programs.git = { - enable = true; - userName = "deadvey"; - userEmail = "deadvey@deadvey.com"; - }; - - services.emacs = { - enable = true; - defaultEditor = true; - }; - - programs.fastfetch = { - enable = true; - settings = { - logo = { - source = "nixos_small"; - }; - display = { - binaryPrefix = "si"; - color = "blue"; - separator = "  "; - }; - modules = [ - { - type = "datetime"; - key = " Date/Time"; - format = "{1}-{3}-{11} {14}:{17}:{20}"; - } - { - type = "os"; - key = " Distro "; - keyColor = "yellow"; - } - { - type = "cpu"; - key = " PC ═╦  "; - keyColor = "green"; - } - { - type = "gpu"; - key = " ╠  "; - keyColor = "green"; - } - { - type = "memory"; - key = " ╚  "; - keyColor = "green"; - } - "colors" - ]; - }; - }; - - programs.wofi = { - enable = true; - settings = { - location = "center"; - allow_markup = true; - width = 250; - height = 500; - }; - style = '' - * { - color: #${FG}; - } - window { - border: ${BORDER_WIDTH}px solid #${FG}; - background-color: #${BG}; - border-radius: ${CORNER_RADIUS}; - } - - #input { - padding: 4px; - margin: 4px; - padding-left: 20px; - border: none; - color: #${FG}; - background-color: #${BG}; - outline: none; - border-radius: ${CORNER_RADIUS}; - } - - #inner-box { - margin: 4px; - border: 10px solid #${BG}; - background-color: #${BG}; - border-radius: ${CORNER_RADIUS}; - } - - #outer-box { - margin: 2px; - border: none; - background-color: #${BG}; - border-radius: ${CORNER_RADIUS}; - } - - #scroll { - margin: 0px; - border: none; - border-radius: ${CORNER_RADIUS}; - } - - #text:selected { - color: #${BG}; - margin: 0px 0px; - border: none; - border-radius: ${CORNER_RADIUS}; - } - - #entry { - margin: 0px 0px; - border: none; - border-radius: ${CORNER_RADIUS}; - } - - #entry:selected { - margin: 0px 0px; - border: none; - background-color: #${GREEN}; - border-radius: ${CORNER_RADIUS}; - } - ''; - }; - - services.dunst = { - enable = true; - iconTheme = { - name = "gruvbox-plus-icons"; - package = pkgs.gruvbox-plus-icons; - }; - settings = { - global = { - width = 300; - height = 300; - corner_radius = "${CORNER_RADIUS}"; - offset = "${HALF_OF_GAPS_OUT}x${HALF_OF_GAPS_OUT}"; - origin = "bottom-right"; - transparency = 0; - font = "Victor Mono SemiBold 12"; - }; - urgency_low = { - background = "#${GREEN}"; - foreground = "#${BG}"; - frame_color = "#${DARK_GREEN}"; - timout = 3; - }; - urgency_normal = { - background = "#${BLUE}"; - foreground = "#${BG}"; - frame_color = "#${DARK_BLUE}"; - timout = 10; - }; - urgency_critical = { - background = "#${DARK_RED}"; - foreground = "#${FG}"; - frame_color = "#${RED}"; - timout = 60; - }; - }; - }; - - services.hyprpaper = { - enable = true; - settings = { - #ipc = "on"; - #splash = false; - #splash_offset = 2.0; - - preload = - [ "${WALLPAPER}" ]; - - wallpaper = [ - "HDMI-A-1,${WALLPAPER}" - ]; - }; - }; - - programs.hyprlock = { - enable = true; - extraConfig = '' - general { - grace = 10 - } - - background { - path = ${WALLPAPER} - blur_size = 5 - blur_passes = 1 # 0 disables blurring - noise = 0.0117 - contrast = 1.3000 # Vibrant!!! - brightness = 0.8000 - vibrancy = 0.2100 - vibrancy_darkness = 0.0 - } - - input-field { - size = 250, 50 - outline_thickness = 3 - dots_size = 0.33 # Scale of input-field height, 0.2 - 0.8 - dots_spacing = 0.15 # Scale of dots' absolute size, 0.0 - 1.0 - dots_center = true - outer_color = "#${BG}" - inner_color = "#${FG}" - font_color = "#${BG}" - #fade_on_empty = true - placeholder_text = Password... # Text rendered in the input box when it's empty. - hide_input = false - -position = 0, 200 -halign = center -valign = bottom - } - # Date - label { - text = cmd[update:18000000] echo " "$(date +'%A, %-d %B %Y')" " - color = "#${FG}" - font_size = 34 - font_family = JetBrains Mono Nerd Font 10 - position = 0, -150 - halign = center - valign = top - } - - # Week - label { - text = cmd[update:18000000] echo " "$(date +'Week %U')" " - color = "#${FG}" - font_size = 24 - font_family = JetBrains Mono Nerd Font 10 - position = 0, -250 - halign = center - valign = top - } - - # Time - label { - text = cmd[update:1000] echo " $(date +"%I:%M:%S %p") " # AM/PM - #text = cmd[update:1000] echo " $(date +"%H:%M:%S") " # 24H - color = "#${FG}" - font_size = 94 - font_family = JetBrains Mono Nerd Font 10 - position = 0, 0 - halign = center - valign = center - } - - # User - label { - text =  $USER - color = $color12 - font_size = 18 - font_family = Inter Display Medium - position = 0, 100 - halign = center - valign = bottom - } - - # uptime - label { - text = cmd[update:60000] echo " "$(uptime -p || $Scripts/UptimeNixOS.sh)" " - color = "#${FG}" - font_size = 24 - font_family = JetBrains Mono Nerd Font 10 - position = 0, 0 - halign = right - valign = bottom - } - - # weather edit specific location. Note, this cause a 2-4 seconds delay in locking - label { - text = cmd[update:3600000] [ -f ~/.cache/.weather_cache ] && cat ~/.cache/.weather_cache - color = "#${FG}" - font_size = 24 - font_family = JetBrains Mono Nerd Font 10 - position = 50, 0 - halign = left - valign = bottom - } - - # Put a picture of choice here. Default is the current wallpaper - image { - path = $HOME/Pictures/other/steampunk.jpg - size = 230 - rounding = -1 - border_size = 2 - border_color = "#${FG}" - rotate = 0 - reload_time = -1 - position = 0, 300 - halign = center - valign = bottom - } - - ''; - }; - - wayland.windowManager.hyprland.settings = { - - "$mod" = "SUPER"; - bind = - [ - "$mod, F, exec, librewolf" - "$mod, Q, exec, kitty" - "$mod, Space, exec, fuzzel --background-color=${BG}ff --border-color=${DARK_BLUE}ff --border-width=${BORDER_WIDTH} --match-color=${RED}ff --selection-color=${FG}ff --selection-text-color=${BG}ff --text-color=${FG}ff --width 75 --lines 25 --icon-theme=Gruvbox-Plus-Dark --border-radius=${CORNER_RADIUS}" - "$mod, E, exec, wofi-emoji" - "$mod, W, killactive" - "$mod, M, fullscreen, 1" - "$mod, J, togglesplit," - "$mod, V, toggleFloating," - "$mod, U, pseudo," - "$mod SHIFT, M, fullscreen" - "$mod SHIFT, Q, exit" - "$mod, left, movefocus, l" - "$mod, right, movefocus, r" - "$mod, up, movefocus, u" - "$mod, down, movefocus, d" - "$mod SHIFT, left, movewindow, l" - "$mod SHIFT, right, movewindow, r" - "$mod SHIFT, up, movewindow, u" - "$mod SHIFT, down, movewindow, d" - ",Print, exec, grimshot savecopy area" - "$mod CONTROL, left, resizeactive, -20 0" - "$mod CONTROL, right, resizeactive, 20 0" - "$mod CONTROL, up, resizeactive, 0 -20" - "$mod CONTROL, down, resizeactive, 0 20" - ",XF86WakeUp, exec, hyprlock" - "$mod, code:67, exec, cmus-remote -Q | grep 'file' | sed 's/file //' | mpv --playlist=- --no-audio --pause" - "$mod, code:68, exec, pactl set-sink-volume @DEFAULT_SINK@ -5%" - "$mod, code:69, exec, pactl set-sink-volume @DEFAULT_SINK@ +5%" - "$mod, code:70, exec, pactl set-sink-mute @DEFAULT_SINK@ toggle" - "$mod, code:71, exec, cmus-remote --pause" - "$mod, code:72, exec, cmus-remote --prev" - "$mod, code:73, exec, cmus-remote --play" - "$mod, code:74, exec, cmus-remote --next" - - # Mouse control with Numpad - ",KP_Down, exec, ydotool mousemove -x 0 -y 10" - ",KP_End, exec, ydotool mousemove -x -10 -y 0" - ",KP_Next, exec, ydotool mousemove -x 10 -y 0" - ",KP_Begin, exec, ydotool mousemove -x 0 -y -10" - ",KP_Left, exec, ydotool click 00" - ",KP_Right, exec, ydotool click 01" - ",KP_Up, exec, ydotool click 02" - ",KP_Home, exec, ydotool click 80" - ",KP_Prior, exec, ydotool click 40" - ] - ++ ( - # workspaces - # binds $mod + [shift +] {1..10} to [move to] workspace {1..10} - builtins.concatLists (builtins.genList ( - x: let - ws = let - c = (x + 1) / 10; - in - builtins.toString (x + 1 - (c * 10)); - in [ - "$mod, ${ws}, workspace, ${toString (x + 1)}" - "$mod SHIFT, ${ws}, movetoworkspace, ${toString (x + 1)}" - ] - ) - 10) - ); - - # Input - input.kb_layout=''gb''; - - # General - general.gaps_in=''${GAPS_IN}''; - general.gaps_out=''${GAPS_OUT}''; - general.border_size=''${BORDER_WIDTH}''; - general."col.active_border"=''rgba(${FG}ff)''; - general."col.inactive_border"=''rgba(${DARK_BLUE}ff)''; - - # Decoration - decoration.rounding=''${CORNER_RADIUS}''; - - }; - wayland.windowManager.hyprland.extraConfig = '' - exec-once=hyprpaper - exec-once=waybar - exec-once=gammastep -O 3000k - ''; - - programs.waybar = { - enable = true; - settings = { - whiteCornersTop = { - name = "whiteCornersTop"; - mode = "overlay"; - layer = "bottom"; - position = "top"; - height = 1080; # Height of monitor - width = 1920; # Width of monitor - margin-top = 0; - margin-bottom = 0; - modules-left = []; - modules-center = ["custom/empty"]; - modules-right = []; - "custom/empty" = { - format = " "; - interval = 1; - }; - }; - topBar = { - name = "topBar"; - layer = "top"; - position = "top"; - mode = "overlay"; - exclusive = "true"; - height = BAR_WIDTH_INT; - width = 1000; - margin-top = 0; - margin-bottom = 0; - modules-left = ["cpu"]; - modules-center = ["clock"]; - modules-right = ["memory"]; - - "clock" = { - format = "{:%a, %d %b %Y %I:%M:%S}  "; - interval = 1; - format-alt = "{:%A, %B %d, %Y %I:%M:%S}  "; - tooltip-format = "{calendar}"; - calendar = { - mode = "year"; - mode-mon-col = 3; - weeks-pos = "right"; - on-scroll = 1; - format = { - months = "{}"; - days = "{}"; - weeks = "W{}"; - weekdays = "{}"; - today = "{}"; - }; - }; - }; - memory = { - interval = 5; - format = " {}%"; - }; - cpu = { - interval = 5; - format = " {usage:2}%"; - tooltip = false; - }; - pulseaudio = { - format = "{icon} {volume}%"; - format-bluetooth = "{volume}% {icon} {format_source}"; - format-bluetooth-muted = " {icon} {format_source}"; - format-muted = " {format_source}"; - format-source = " {volume}%"; - format-source-muted = ""; - format-icons = { - headphone = ""; - hands-free = ""; - headset = ""; - phone = ""; - portable = ""; - car = ""; - default = ["" "" ""]; - }; - on-click = "pavucontrol"; - }; - }; - bottomBar = { - name = "bottomBar"; - layer = "top"; - position = "bottom"; - mode = "overlay"; - height = BAR_WIDTH_INT; - width = 1000; - margin-top = 0; - margin-bottom = 0; - modules-left = []; - modules-center = ["custom/song" "custom/artist"]; - modules-right = []; - - "custom/artist" = { - format = "{}"; - exec = "cmus-remote -Q | grep 'tag artist' | sed 's/tag artist //'"; - interval = 1; - }; - "custom/song" = { - format = "{}"; - exec = "cmus-remote -Q | grep 'tag title' | sed 's/tag title //'"; - interval = 1; - }; - - - }; - }; - - - style = '' - * { - font-size: 12px; - font-family: Font Awesome, Ubuntu Nerd Font, sans-serif; - font-weight: bold; - min-height: 0; - } - window#waybar.topBar { - background-color: transparent; - } - window#waybar.bottomBar { - background-color: transparent; - } - window#waybar.rightBar { - background-color: transparent; - } - #clock.whiteCornersTop - #clock.whiteCornersBottom { - background-color: transparent; - color: transparent; - } - window#waybar.whiteCornersTop { - border: ${BORDER_WIDTH}px solid RGBA(235, 219, 178, 1); - background-color: transparent; - box-shadow: 0px 0px 0px 60px black, 0px 0px 0px 0.5px #ebdbb2; - border-radius: ${RECEIVING_CORNER_RADIUS}px; - margin: 20px; - } - window#waybar.right, - window#waybar.left { - background-color: #${FG}; - border-bottom: ${BORDER_WIDTH}px; - } - #workspaces { - background: #${FG}; - margin: 5px 3px 5px 5px; - padding: 0px 1px; - border-radius: ${CORNER_RADIUS}px; - border: 0px; - font-style: normal; - color: #${BG}; - } - - #workspaces button { - padding: 0px 0px; - margin: 4px 3px; - border-radius: ${CORNER_RADIUS}px; - border: 0px; - color: #${BG}; - background-color: #${BLUE}; - opacity: 0.5; - transition: all 0.3s ease-in-out; - } - - #workspaces button.active { - color: #${DARK_BLUE}; - background: #${DARK_BLUE}; - border-radius: ${CORNER_RADIUS}px; - min-width: 40px; - transition: all 0.3s ease-in-out; - opacity: 1.0; - } - - #workspaces button:hover { - color: #${BG}; - background: #${BG}; - border-radius: ${CORNER_RADIUS}px; - opacity: 1.0; - } - - #window { - color: #${BG}; - background: #c0caf5; - border-radius: ${CORNER_RADIUS}px; - margin: 5px; - padding: 2px 10px; - } - - #memory { - color: #${BG}; - background: #${ORANGE}; - border-radius: 0px 0px ${CORNER_RADIUS}px ${CORNER_RADIUS}px; - margin: 0px; - padding: 0px 10px; - border: 2px solid #${FG}; - } - - #clock { - color: #${BG}; - background: #${PURPLE}; - border-radius: 0px 0px ${CORNER_RADIUS}px ${CORNER_RADIUS}px; - margin: 0px; - padding: 0px 10px; - border-right: 2px solid #${FG}; - border-left: 2px solid #${FG}; - border-top: 2px solid #${PURPLE}; - border-bottom: 2px solid #${FG}; - } - - #cpu { - color: #${BG}; - background: #${GREEN}; - border-radius: 0px 0px ${CORNER_RADIUS}px ${CORNER_RADIUS}px; - margin: 0px; - padding: 0px 10px; - border: 2px solid #${FG}; - } - - #network { - color: #${BG}; - background: #${DARK_YELLOW}; - border-radius: ${CORNER_RADIUS}px; - margin: 5px; - padding: 2px 10px; - } - - #tray { - color: #${BG}; - background: #${YELLOW}; - border-radius: ${CORNER_RADIUS}px 0px 0px ${CORNER_RADIUS}px; - margin: 0px; - padding: 10px 2px; - border: 2px solid #${FG}; - } - - #pulseaudio { - color: #${BG}; - background: #${YELLOW}; - border-radius: 0px 0px ${CORNER_RADIUS}px ${CORNER_RADIUS}px; - margin: 0px; - padding: 0px 10px; - border: 2px solid #${FG}; - } - #custom-artist { - color: #${BG}; - background: #${AQUA}; - border-radius: 0px ${CORNER_RADIUS}px 0px 0px; - margin: 0px; - padding: 0px 10px; - border: 2px solid #${FG}; - border-left: 1px solid #${FG}; - } - #custom-song { - color: #${BG}; - background: #${AQUA}; - border-radius: ${CORNER_RADIUS}px 0px 0px 0px; - margin: 0px; - padding: 0px 10px; - border: 2px solid #${FG}; - border-right: 1px solid #${FG}; - } - ''; - }; -}; - - # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ - hyprlock - vim - cmus - wget - emacs - fastfetch - gparted - git - dunst - python3 - gcc - htop - hyprland - xorg.xinit - wine - libGL - wine64 - wine-staging - winetricks - mesa - vulkan-volk - dxvk - vkd3d - waybar - yazi - xwayland - kitty - fuzzel - wtype - wofi - sway-contrib.grimshot - cron - wofi-emoji - dmenu - w3m - gpm # Mouse support in tty - grim - slurp - wl-clipboard - gtk3 - dbus - hyprpaper - dconf - qview - lsd - mpv - vlc - - killall - zip - spotdl - ntfs3g - ydotool - gammastep # Filters out blue light - libnotify - pulseaudio - eza + neovim + wget + git + lynx + hyprland ]; fonts.packages = with pkgs; [ - nerdfonts - noto-fonts - noto-fonts-cjk - noto-fonts-emoji - liberation_ttf - fira-code - fira-code-symbols - mplus-outline-fonts.githubRelease - dina-font - proggyfonts - font-awesome_4 - font-awesome - victor-mono + noto-fonts + noto-fonts-cjk + noto-fonts-emoji + liberation_ttf + fira-code + fira-code-symbols + mplus-outline-fonts.githubRelease + dina-font + proggyfonts + victor-mono ]; - # Some programs need SUID wrappers, can be configured further or are # started in user sessions. # programs.mtr.enable = true; @@ -1160,6 +114,5 @@ valign = bottom # this value at the release version of the first install of this system. # Before changing this value read the documentation for this option # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). - system.stateVersion = "24.05"; # Did you read the comment? - + system.stateVersion = "unstable"; # Did you read the comment? } diff --git a/nixos-switch.log b/nixos-switch.log index 3dc520c..60b25cf 100644 --- a/nixos-switch.log +++ b/nixos-switch.log @@ -1,224 +1 @@ -building Nix... -building the system configuration... -these 12 derivations will be built: - /nix/store/jb86hacag75g47sh3wh5hm3b1bw9adpm-system-path.drv - /nix/store/gz9ifcg256a1rsdglmhvq8y48a85fsqm-dbus-1.drv - /nix/store/0cq7mbmqbdhfj86ms5cd7yyv3dq3mfln-X-Restart-Triggers-dbus.drv - /nix/store/46mkaqcykh50h2shi98ngi907n7pvbvs-unit-dbus.service.drv - /nix/store/53vz2ywnf778gl2hww6qv3kwwngzz1cy-X-Restart-Triggers-polkit.drv - /nix/store/i47nn28k6xkac416d2gmiigv9rpp23rw-unit-accounts-daemon.service.drv - /nix/store/l33pnrms967vg7dkd3l1j1w63vx9pb9n-unit-polkit.service.drv - /nix/store/7g8wbymm87ycpvs9c08imcy11bbvqph2-system-units.drv - /nix/store/ak224ijr3m693s1phh9bigrk6rmj4nnh-unit-dbus.service.drv - /nix/store/gakagds0idig68wy7givclx3wjgpcy5l-user-units.drv - /nix/store/lbvng7qvgyaggrpnmfj6p91j5vhfpbv8-etc.drv - /nix/store/7qirjfqqkq13n1n6y5p22aw1rcpy4yc2-nixos-system-nixos-24.05.3999.c42fcfbdfeae.drv -building '/nix/store/jb86hacag75g47sh3wh5hm3b1bw9adpm-system-path.drv'... -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/fr.UTF-8/man1/wineserver.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/fr.UTF-8/man1/wineserver.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/fr.UTF-8/man1/winemaker.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/fr.UTF-8/man1/winemaker.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/wineg++.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/wineg++.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/wineserver.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/wineserver.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/winebuild.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/winebuild.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/regedit.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/regedit.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/regsvr32.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/regsvr32.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/winedump.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/winedump.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/msiexec.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/msiexec.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/winepath.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/winepath.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/wineconsole.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/wineconsole.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/winemaker.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/winemaker.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/notepad.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/notepad.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/winefile.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/winefile.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/winemine.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/winemine.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/wmc.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/wmc.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/winegcc.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/winegcc.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/wrc.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/wrc.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/winedbg.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/winedbg.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/winecpp.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/winecpp.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/wineboot.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/wineboot.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/widl.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/widl.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/man1/winecfg.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/man1/winecfg.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/de.UTF-8/man1/wineserver.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/de.UTF-8/man1/wineserver.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/man/de.UTF-8/man1/winemaker.1.gz' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/man/de.UTF-8/man1/winemaker.1.gz' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/applications/wine.desktop' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/applications/wine.desktop' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/tahoma.ttf' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/tahoma.ttf' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/coue1255.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/coue1255.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/smae1257.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/smae1257.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/coureg.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/coureg.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/vgasysr.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/vgasysr.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/sserifeg.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/sserifeg.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/smallet.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/smallet.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/smae1256.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/smae1256.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/coue1257.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/coue1257.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/ssef874.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/ssef874.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/hvgasys.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/hvgasys.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/ssef1255.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/ssef1255.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/ssef1256.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/ssef1256.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/smallee.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/smallee.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/coure.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/coure.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/vgasysg.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/vgasysg.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/jsmalle.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/jsmalle.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/ssee1256.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/ssee1256.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/ssee1255.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/ssee1255.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/symbol.ttf' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/symbol.ttf' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/vgasyst.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/vgasyst.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/ssef1257.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/ssef1257.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/couret.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/couret.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/jvgafix.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/jvgafix.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/vgas1255.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/vgas1255.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/smae1255.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/smae1255.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/vgas1257.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/vgas1257.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/sseriffe.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/sseriffe.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/ssee1257.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/ssee1257.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/marlett.ttf' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/marlett.ttf' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/ssee874.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/ssee874.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/sseriff.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/sseriff.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/vgas1256.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/vgas1256.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/jvgasys.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/jvgasys.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/sserifee.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/sserifee.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/sseriffg.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/sseriffg.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/couree.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/couree.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/sserifft.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/sserifft.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/coue1256.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/coue1256.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/tahomabd.ttf' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/tahomabd.ttf' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/smaller.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/smaller.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/cvgasys.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/cvgasys.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/webdings.ttf' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/webdings.ttf' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/smalle.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/smalle.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/sserifet.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/sserifet.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/wingding.ttf' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/wingding.ttf' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/vgasys.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/vgasys.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/vgasyse.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/vgasyse.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/sserifer.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/sserifer.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/courer.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/courer.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/sserife.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/sserife.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/sseriffr.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/sseriffr.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/vgafix.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/vgafix.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/svgasys.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/svgasys.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/vgas874.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/vgas874.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/fonts/smalleg.fon' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/fonts/smalleg.fon' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/wine.inf' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/wine.inf' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_720.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_720.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_28592.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_28592.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/sortdefault.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/sortdefault.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_21866.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_21866.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_775.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_775.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_866.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_866.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_20866.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_20866.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_1361.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_1361.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_936.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_936.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_857.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_857.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_20127.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_20127.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/locale.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/locale.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/normnfkd.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/normnfkd.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_20949.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_20949.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_875.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_875.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_500.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_500.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_28591.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_28591.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_10017.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_10017.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_28593.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_28593.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_863.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_863.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_10021.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_10021.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/normnfd.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/normnfd.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_860.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_860.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_037.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_037.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_1258.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_1258.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_1256.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_1256.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_10082.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_10082.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_1250.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_1250.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_10006.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_10006.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_852.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_852.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_950.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_950.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_10081.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_10081.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_10008.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_10008.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_1255.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_1255.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_28599.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_28599.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_850.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_850.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_874.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_874.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/normnfc.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/normnfc.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_1026.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_1026.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_855.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_855.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_1253.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_1253.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_1254.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_1254.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_28598.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_28598.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_10079.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_10079.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_10003.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_10003.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_28603.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_28603.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/normnfkc.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/normnfkc.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/normidna.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/normidna.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_437.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_437.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/l_intl.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/l_intl.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_10004.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_10004.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_28596.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_28596.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_1252.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_1252.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_20932.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_20932.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_10001.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_10001.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_10000.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_10000.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_10029.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_10029.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_28595.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_28595.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_10005.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_10005.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_10010.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_10010.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_10002.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_10002.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_861.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_861.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_10007.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_10007.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_1257.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_1257.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_865.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_865.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_864.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_864.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_862.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_862.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_737.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_737.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_949.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_949.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_28597.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_28597.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_28605.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_28605.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_708.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_708.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_28594.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_28594.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_932.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_932.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_1251.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_1251.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/share/wine/nls/c_869.nls' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/share/wine/nls/c_869.nls' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/regsvr32' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/regsvr32' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/winedbg' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/winedbg' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/wineboot' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/wineboot' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/notepad' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/notepad' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/widl' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/widl' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/winemaker' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/winemaker' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/msidb' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/msidb' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/winecpp' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/winecpp' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/wineg++' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/wineg++' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/regedit' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/regedit' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/winebuild' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/winebuild' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/wineserver' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/wineserver' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/function_grep.pl' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/function_grep.pl' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/wineconsole' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/wineconsole' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/winepath' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/winepath' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/winemine' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/winemine' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/wmc' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/wmc' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/winedump' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/winedump' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/winecfg' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/winecfg' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/msiexec' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/msiexec' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/winefile' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/winefile' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/wrc' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/wrc' -warning: collision between `/nix/store/im1xmma8f80gf5jdh1hg3nfpm54x9k55-wine64-9.0/bin/winegcc' and `/nix/store/lg5hx5jm0s80w970y412q8blif3v221g-wine-9.0/bin/winegcc' -warning: collision between `/nix/store/f15x48r4w7rdkh4zmngdrlvq175lxijb-xorg-server-21.1.13/share/man/man1/Xserver.1.gz' and `/nix/store/199xw3102zq3mkvq4kdi9li4zsw5nvd6-xwayland-24.1.0/share/man/man1/Xserver.1.gz' -warning: collision between `/nix/store/f15x48r4w7rdkh4zmngdrlvq175lxijb-xorg-server-21.1.13/lib/xorg/protocol.txt' and `/nix/store/199xw3102zq3mkvq4kdi9li4zsw5nvd6-xwayland-24.1.0/lib/xorg/protocol.txt' -created 42033 symlinks in user environment -gtk-update-icon-cache: Cache file created successfully. -gtk-update-icon-cache: Cache file created successfully. -gtk-update-icon-cache: Cache file created successfully. -building '/nix/store/53vz2ywnf778gl2hww6qv3kwwngzz1cy-X-Restart-Triggers-polkit.drv'... -building '/nix/store/gz9ifcg256a1rsdglmhvq8y48a85fsqm-dbus-1.drv'... -building '/nix/store/i47nn28k6xkac416d2gmiigv9rpp23rw-unit-accounts-daemon.service.drv'... -building '/nix/store/0cq7mbmqbdhfj86ms5cd7yyv3dq3mfln-X-Restart-Triggers-dbus.drv'... -building '/nix/store/l33pnrms967vg7dkd3l1j1w63vx9pb9n-unit-polkit.service.drv'... -building '/nix/store/46mkaqcykh50h2shi98ngi907n7pvbvs-unit-dbus.service.drv'... -building '/nix/store/ak224ijr3m693s1phh9bigrk6rmj4nnh-unit-dbus.service.drv'... -building '/nix/store/7g8wbymm87ycpvs9c08imcy11bbvqph2-system-units.drv'... -building '/nix/store/gakagds0idig68wy7givclx3wjgpcy5l-user-units.drv'... -building '/nix/store/lbvng7qvgyaggrpnmfj6p91j5vhfpbv8-etc.drv'... -building '/nix/store/7qirjfqqkq13n1n6y5p22aw1rcpy4yc2-nixos-system-nixos-24.05.3999.c42fcfbdfeae.drv'... -stopping the following units: accounts-daemon.service -activating the configuration... -setting up /etc... -reloading user units for sddm... -reloading user units for deadvey... -restarting sysinit-reactivation.target -reloading the following units: dbus.service -restarting the following units: polkit.service -starting the following units: accounts-daemon.service +error: interrupted by the user