Add kdeconnect as standalone service, add qbittorrent
This commit is contained in:
parent
d7fd98a57a
commit
411e511bfd
|
@ -5,7 +5,7 @@
|
|||
./hardware/audio.nix
|
||||
./hardware/bluetooth.nix
|
||||
./locales/en_GB.nix
|
||||
./desktop/plasma.nix
|
||||
./desktop/sddm.nix
|
||||
./desktop/hyprland.nix
|
||||
./desktop/steam.nix
|
||||
./syncthing/Vanguard.nix
|
||||
|
@ -23,6 +23,7 @@
|
|||
allowedTCPPorts = [22];
|
||||
};
|
||||
|
||||
services.xserver.displayManager.defaultSession = "hyprland";
|
||||
users.users.xenia = {
|
||||
isNormalUser = true;
|
||||
description = "Evie Litherland-Smith";
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{pkgs, ...}: let
|
||||
sddm-catppuccin-macchiato = pkgs.callPackage ./pkgs/sddm-catppuccin-macchiato {};
|
||||
in {
|
||||
imports = [./xserver.nix];
|
||||
environment.systemPackages = [
|
||||
sddm-catppuccin-macchiato.sddm-catppuccin-macchiato
|
||||
];
|
||||
|
|
|
@ -11,18 +11,10 @@
|
|||
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
|
||||
monitor=HDMI-A-2,highrr,auto,1
|
||||
monitor=,auto,auto,1
|
||||
|
||||
exec-once = hyprpaper
|
||||
exec-once = waybar
|
||||
monitor=DP-2,highrr,auto,1
|
||||
'';
|
||||
programs.waybar = {
|
||||
style = ''
|
||||
|
|
6
home/gui/kdeconnect.nix
Normal file
6
home/gui/kdeconnect.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{...}: {
|
||||
services.kdeconnect = {
|
||||
enable = true;
|
||||
indicator = true;
|
||||
};
|
||||
}
|
|
@ -3,6 +3,7 @@
|
|||
./common.nix
|
||||
./env
|
||||
./gui
|
||||
./gui/kdeconnect.nix
|
||||
./tui
|
||||
./git/personal.nix
|
||||
./ssh/personal.nix
|
||||
|
@ -10,5 +11,6 @@
|
|||
home.packages = with pkgs; [
|
||||
discord
|
||||
element-desktop
|
||||
qbittorrent
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue