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