Compare commits
5 commits
1b71633b9b
...
04b687340c
Author | SHA1 | Date | |
---|---|---|---|
04b687340c | |||
52fe1d2847 | |||
d7c231b017 | |||
f0df5cf1a7 | |||
f2f778891c |
12 changed files with 94 additions and 35 deletions
|
@ -17,9 +17,12 @@ let
|
|||
};
|
||||
in
|
||||
{
|
||||
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")
|
||||
];
|
||||
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")
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -5,7 +5,10 @@
|
|||
config,
|
||||
...
|
||||
}:
|
||||
lib.mkIf osConfig.programs.hyprland.enable {
|
||||
let
|
||||
inherit (lib) mapAttrsToList mkIf hasAttr;
|
||||
in
|
||||
mkIf osConfig.programs.hyprland.enable {
|
||||
home.sessionVariables.ELECTRON_OZONE_PLATFORM_HINT = "auto";
|
||||
|
||||
wayland.windowManager.hyprland = {
|
||||
|
@ -14,10 +17,15 @@ lib.mkIf osConfig.programs.hyprland.enable {
|
|||
settings = {
|
||||
"$mod" = "SUPER";
|
||||
|
||||
monitor = [
|
||||
"DP-2,1920x1080@144, 0x0, 1"
|
||||
"HDMI-A-1,1920x1080@60, 1920x0, 1"
|
||||
];
|
||||
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;
|
||||
|
||||
exec-once = [
|
||||
"${config.services.kdeconnect.package}/bin/kdeconnect-indicator"
|
||||
|
@ -51,6 +59,7 @@ lib.mkIf osConfig.programs.hyprland.enable {
|
|||
input = {
|
||||
numlock_by_default = true;
|
||||
kb_options = "compose:caps";
|
||||
kb_layout = osConfig.console.keyMap;
|
||||
};
|
||||
|
||||
decoration = {
|
||||
|
@ -60,10 +69,12 @@ lib.mkIf osConfig.programs.hyprland.enable {
|
|||
active_opacity = 1.0;
|
||||
inactive_opacity = 1.0;
|
||||
|
||||
drop_shadow = true;
|
||||
shadow_range = 4;
|
||||
shadow_render_power = 3;
|
||||
"col.shadow" = "rgba(1a1a1aee)";
|
||||
shadow = {
|
||||
enabled = true;
|
||||
range = 4;
|
||||
render_power = 3;
|
||||
color = "rgba(1a1a1aee)";
|
||||
};
|
||||
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#blur
|
||||
blur = {
|
||||
|
|
|
@ -33,6 +33,8 @@
|
|||
|
||||
modules = {
|
||||
system = {
|
||||
roles.desktop.enable = true;
|
||||
|
||||
outputs = {
|
||||
"DP-2" = {
|
||||
resX = 1920;
|
||||
|
@ -75,10 +77,7 @@
|
|||
};
|
||||
media.enableAll = true;
|
||||
};
|
||||
documentation = {
|
||||
doc.enable = false;
|
||||
man.generateCaches = false;
|
||||
};
|
||||
|
||||
services = {
|
||||
displayManager.sddm.enable = true;
|
||||
dbus.enable = true;
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
media.enableAll = true;
|
||||
|
||||
system = {
|
||||
roles.desktop.enable = true;
|
||||
|
||||
outputs = {
|
||||
eDP-1 = {
|
||||
resX = 3840;
|
||||
|
|
|
@ -47,7 +47,17 @@
|
|||
}
|
||||
{
|
||||
name = "movies";
|
||||
comment = "backup location for movies shows";
|
||||
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";
|
||||
mode = "write";
|
||||
}
|
||||
];
|
||||
|
|
|
@ -28,6 +28,9 @@ in
|
|||
upstream_dns_file = config.age.secrets.adguard-dns-list.path;
|
||||
fallback_dns = [ "9.9.9.9" ];
|
||||
};
|
||||
filtering = {
|
||||
filtering_enabled = true;
|
||||
};
|
||||
clients = {
|
||||
persistent = [
|
||||
{
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
{
|
||||
imports = [ ./system.nix ];
|
||||
imports = [
|
||||
./system.nix
|
||||
./documentation.nix
|
||||
];
|
||||
}
|
||||
|
|
6
modules/commons/documentation.nix
Normal file
6
modules/commons/documentation.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
documentation = {
|
||||
doc.enable = false;
|
||||
man.generateCaches = false;
|
||||
};
|
||||
}
|
|
@ -1,16 +1,23 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
qt = {
|
||||
enable = true;
|
||||
platformTheme = "gtk2";
|
||||
#platformTheme = "qt5ct";
|
||||
#style = "kvantum";
|
||||
};
|
||||
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
|
||||
];
|
||||
environment.systemPackages = with pkgs; [
|
||||
#vimix-icon-theme
|
||||
#pop-icon-theme
|
||||
catppuccin-papirus-folders
|
||||
#catppuccin-kvantum
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -82,7 +82,8 @@ in
|
|||
|
||||
serviceConfig = serviceConfigSecurity // {
|
||||
ExecStart = "${pkgs.rsync}/bin/rsync --daemon --no-detach --config=${configFile}";
|
||||
RestartSec = 1;
|
||||
RestartSec = 15;
|
||||
Restart = "always";
|
||||
};
|
||||
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
|
|
|
@ -1 +1,6 @@
|
|||
{ imports = [ ./terminal.nix ]; }
|
||||
{
|
||||
imports = [
|
||||
./terminal.nix
|
||||
./desktop.nix
|
||||
];
|
||||
}
|
||||
|
|
9
options/system/roles/desktop.nix
Normal file
9
options/system/roles/desktop.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ lib, ... }:
|
||||
let
|
||||
inherit (lib) mkEnableOption;
|
||||
in
|
||||
{
|
||||
options.modules.system.roles.desktop = {
|
||||
enable = mkEnableOption "desktop usage features";
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue