Compare commits

..

1 commit

Author SHA1 Message Date
1b71633b9b
feat: use per device monitor configuration 2024-11-29 10:58:20 +01:00
12 changed files with 35 additions and 94 deletions

View file

@ -17,12 +17,9 @@ let
};
in
{
xdg = {
userDirs.enable = true;
desktopEntries = builtins.listToAttrs [
(mkURLEntry "Paperless" "https://paperless.ccnlc.eu" "${self}/assets/favicon-paperless.png")
(mkURLEntry "KitchenOwl" "https://kitchenowl.ccnlc.eu" "${self}/assets/favicon-kitchenowl.png")
(mkURLEntry "Discord" "https://discord.com/app" "${self}/assets/favicon-discord.png")
];
};
xdg.desktopEntries = builtins.listToAttrs [
(mkURLEntry "Paperless" "https://paperless.ccnlc.eu" "${self}/assets/favicon-paperless.png")
(mkURLEntry "KitchenOwl" "https://kitchenowl.ccnlc.eu" "${self}/assets/favicon-kitchenowl.png")
(mkURLEntry "Discord" "https://discord.com/app" "${self}/assets/favicon-discord.png")
];
}

View file

@ -5,10 +5,7 @@
config,
...
}:
let
inherit (lib) mapAttrsToList mkIf hasAttr;
in
mkIf osConfig.programs.hyprland.enable {
lib.mkIf osConfig.programs.hyprland.enable {
home.sessionVariables.ELECTRON_OZONE_PLATFORM_HINT = "auto";
wayland.windowManager.hyprland = {
@ -17,15 +14,10 @@ mkIf osConfig.programs.hyprland.enable {
settings = {
"$mod" = "SUPER";
monitor = mapAttrsToList (
name: value:
let
inherit (value) resX resY scale;
posFinal = "${toString value.posX}x${toString value.posY}";
rrFinal = if hasAttr "rr" value then "@${toString value.rr}" else "";
in
"${name}, ${toString resX}x${toString resY}${rrFinal}, ${posFinal}, ${toString scale}"
) osConfig.modules.system.outputs;
monitor = [
"DP-2,1920x1080@144, 0x0, 1"
"HDMI-A-1,1920x1080@60, 1920x0, 1"
];
exec-once = [
"${config.services.kdeconnect.package}/bin/kdeconnect-indicator"
@ -59,7 +51,6 @@ mkIf osConfig.programs.hyprland.enable {
input = {
numlock_by_default = true;
kb_options = "compose:caps";
kb_layout = osConfig.console.keyMap;
};
decoration = {
@ -69,12 +60,10 @@ mkIf osConfig.programs.hyprland.enable {
active_opacity = 1.0;
inactive_opacity = 1.0;
shadow = {
enabled = true;
range = 4;
render_power = 3;
color = "rgba(1a1a1aee)";
};
drop_shadow = true;
shadow_range = 4;
shadow_render_power = 3;
"col.shadow" = "rgba(1a1a1aee)";
# https://wiki.hyprland.org/Configuring/Variables/#blur
blur = {

View file

@ -33,8 +33,6 @@
modules = {
system = {
roles.desktop.enable = true;
outputs = {
"DP-2" = {
resX = 1920;
@ -77,7 +75,10 @@
};
media.enableAll = true;
};
documentation = {
doc.enable = false;
man.generateCaches = false;
};
services = {
displayManager.sddm.enable = true;
dbus.enable = true;

View file

@ -17,8 +17,6 @@
media.enableAll = true;
system = {
roles.desktop.enable = true;
outputs = {
eDP-1 = {
resX = 3840;

View file

@ -47,17 +47,7 @@
}
{
name = "movies";
comment = "backup location for movies and shows";
mode = "write";
}
{
name = "books";
comment = "backup location for books";
mode = "write";
}
{
name = "games";
comment = "backup location for games";
comment = "backup location for movies shows";
mode = "write";
}
];

View file

@ -28,9 +28,6 @@ in
upstream_dns_file = config.age.secrets.adguard-dns-list.path;
fallback_dns = [ "9.9.9.9" ];
};
filtering = {
filtering_enabled = true;
};
clients = {
persistent = [
{

View file

@ -1,6 +1,3 @@
{
imports = [
./system.nix
./documentation.nix
];
imports = [ ./system.nix ];
}

View file

@ -1,6 +0,0 @@
{
documentation = {
doc.enable = false;
man.generateCaches = false;
};
}

View file

@ -1,23 +1,16 @@
{ pkgs, ... }:
{
pkgs,
lib,
config,
...
}:
{
config = lib.mkIf config.modules.system.roles.desktop.enable {
qt = {
enable = true;
platformTheme = "gtk2";
#platformTheme = "qt5ct";
#style = "kvantum";
};
environment.systemPackages = with pkgs; [
#vimix-icon-theme
#pop-icon-theme
catppuccin-papirus-folders
#catppuccin-kvantum
];
qt = {
enable = true;
platformTheme = "gtk2";
#platformTheme = "qt5ct";
#style = "kvantum";
};
environment.systemPackages = with pkgs; [
#vimix-icon-theme
#pop-icon-theme
catppuccin-papirus-folders
#catppuccin-kvantum
];
}

View file

@ -82,8 +82,7 @@ in
serviceConfig = serviceConfigSecurity // {
ExecStart = "${pkgs.rsync}/bin/rsync --daemon --no-detach --config=${configFile}";
RestartSec = 15;
Restart = "always";
RestartSec = 1;
};
wantedBy = [ "multi-user.target" ];

View file

@ -1,6 +1 @@
{
imports = [
./terminal.nix
./desktop.nix
];
}
{ imports = [ ./terminal.nix ]; }

View file

@ -1,9 +0,0 @@
{ lib, ... }:
let
inherit (lib) mkEnableOption;
in
{
options.modules.system.roles.desktop = {
enable = mkEnableOption "desktop usage features";
};
}