2023-11-26 20:26:49 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: let
|
2023-10-28 20:25:06 +00:00
|
|
|
# window-screenshot = pkgs.writeTextFile "window-screenshot.nu" (builtins.readFile ../../other/scripts/desktop/window-screenshot.nu);
|
2023-04-22 11:10:34 +00:00
|
|
|
window-screenshot = pkgs.writeShellScriptBin "window-screenshot.sh" (builtins.readFile ../../other/scripts/desktop/window-screenshot.sh);
|
2023-02-13 11:54:21 +00:00
|
|
|
# desktop-ctl = pkgs.writeShellScriptBin "desktop-ctl.sh" (builtins.readFile ../scripts/desktop/desktop-ctl.sh);
|
2023-11-26 20:26:49 +00:00
|
|
|
desktop-ctl = import ../../other/scripts/desktop/desktopctl.nix {inherit pkgs;};
|
2023-11-14 11:22:19 +00:00
|
|
|
# TODO: fix ocr screenshot script
|
2023-04-22 11:10:34 +00:00
|
|
|
ocr-screenshot = pkgs.writeShellScriptBin "ocr-screenshot.sh" (builtins.readFile ../../other/scripts/desktop/ocr-screenshot.sh);
|
2023-02-13 11:54:21 +00:00
|
|
|
# rofi calculator copied from https://github.com/barbuk/menu-qalc
|
2023-04-22 11:10:34 +00:00
|
|
|
menu-qalc = pkgs.writeShellScriptBin "menu-qalc" (builtins.readFile ../../other/scripts/desktop/menu-qalc.sh);
|
2023-11-26 20:26:49 +00:00
|
|
|
in
|
|
|
|
with lib; {
|
|
|
|
imports = [
|
|
|
|
./gaming.nix
|
|
|
|
./creative.nix # TODO: more fine grained choices, not every setup needs fspy or rawtherapee
|
|
|
|
./ios-compat.nix
|
|
|
|
./syncthing.nix
|
|
|
|
./kdeconnect.nix
|
|
|
|
./themeing.nix
|
|
|
|
./cloud.nix
|
|
|
|
./networking.nix
|
|
|
|
./social.nix
|
|
|
|
./mail.nix
|
2024-03-03 13:22:10 +00:00
|
|
|
./fonts.nix
|
2023-11-26 20:26:49 +00:00
|
|
|
./firefox.nix
|
2024-03-05 12:10:08 +00:00
|
|
|
./x.nix
|
2023-11-26 20:26:49 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
programs.seahorse.enable = true;
|
|
|
|
security.pam.services.jade.enableGnomeKeyring = true;
|
2023-02-13 11:54:21 +00:00
|
|
|
|
2023-11-26 20:26:49 +00:00
|
|
|
virtualisation.libvirtd.enable = true;
|
2023-02-13 11:54:21 +00:00
|
|
|
|
2023-11-26 20:26:49 +00:00
|
|
|
services = {
|
2024-04-03 15:54:04 +00:00
|
|
|
printing = {
|
|
|
|
enable = true;
|
|
|
|
drivers = [
|
|
|
|
pkgs.gutenprint
|
|
|
|
pkgs.gutenprintBin
|
|
|
|
pkgs.hplip
|
|
|
|
pkgs.brlaser
|
|
|
|
pkgs.brgenml1lpr
|
|
|
|
pkgs.brgenml1cupswrapper
|
|
|
|
pkgs.ptouch-driver
|
|
|
|
];
|
|
|
|
};
|
2023-11-26 20:26:49 +00:00
|
|
|
gnome.gnome-keyring.enable = true;
|
2023-11-14 11:22:19 +00:00
|
|
|
};
|
2023-11-26 20:26:49 +00:00
|
|
|
|
|
|
|
programs.xss-lock = {
|
2023-11-14 11:22:19 +00:00
|
|
|
enable = true;
|
2023-11-28 20:50:03 +00:00
|
|
|
lockerCommand = "${pkgs.i3lock}/bin/i3lock -c 1d2021";
|
2023-11-14 11:22:19 +00:00
|
|
|
};
|
2023-02-13 11:54:21 +00:00
|
|
|
|
2023-11-26 20:26:49 +00:00
|
|
|
services.illum.enable = true;
|
2024-04-03 15:54:04 +00:00
|
|
|
services.avahi = {
|
|
|
|
enable = true;
|
2024-05-06 19:32:14 +00:00
|
|
|
nssmdns4 = true;
|
2024-04-03 15:54:04 +00:00
|
|
|
openFirewall = true;
|
|
|
|
};
|
2023-11-26 20:26:49 +00:00
|
|
|
services.smartd = {
|
2023-11-14 11:22:19 +00:00
|
|
|
enable = true;
|
2023-11-26 20:26:49 +00:00
|
|
|
notifications.x11.enable = true;
|
|
|
|
notifications.test = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
home-manager.users.jade = {pkgs, ...}: {
|
2024-10-11 06:51:11 +00:00
|
|
|
home.sessionVariables = {
|
|
|
|
"S10E_JRNL_FILE_LOC" = "/home/jade/Docs/jrnl.md";
|
|
|
|
};
|
2024-02-17 22:34:34 +00:00
|
|
|
programs.ssh = {
|
|
|
|
controlMaster = "yes";
|
|
|
|
};
|
|
|
|
|
2023-11-26 20:26:49 +00:00
|
|
|
programs.bat = {
|
|
|
|
# TODO: more config
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
programs.rofi = {
|
|
|
|
enable = true;
|
|
|
|
theme = ../../other/rofi-themes/applauncher.rasi;
|
|
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
just
|
|
|
|
bacon
|
|
|
|
|
|
|
|
magic-wormhole-rs
|
|
|
|
|
|
|
|
yt-dlp
|
|
|
|
|
|
|
|
i3lock
|
|
|
|
rofimoji
|
|
|
|
feh
|
|
|
|
xorg.xinput
|
|
|
|
arandr
|
|
|
|
flameshot
|
|
|
|
tesseract5
|
|
|
|
imagemagick
|
|
|
|
xclip
|
|
|
|
xmacro
|
|
|
|
xorg.xev
|
2024-09-26 17:15:58 +00:00
|
|
|
gscreenshot
|
2023-11-26 20:26:49 +00:00
|
|
|
|
|
|
|
syncplay
|
|
|
|
|
|
|
|
# filemanager
|
|
|
|
xfce.thunar
|
|
|
|
xfce.tumbler
|
|
|
|
xfce.thunar-archive-plugin
|
2024-07-30 20:06:36 +00:00
|
|
|
file-roller
|
2023-11-26 20:26:49 +00:00
|
|
|
# media/file viewers
|
|
|
|
vlc
|
|
|
|
mpv
|
|
|
|
evince
|
|
|
|
nomacs
|
2024-04-16 19:36:26 +00:00
|
|
|
jellyfin-media-player
|
2023-11-26 20:26:49 +00:00
|
|
|
|
|
|
|
# from environment.systemPackages cleanup
|
|
|
|
gparted
|
|
|
|
xdg-desktop-portal-gtk
|
|
|
|
virt-manager
|
|
|
|
ddccontrol-db
|
|
|
|
firebird-emu
|
|
|
|
gitg
|
|
|
|
gpick
|
|
|
|
qdirstat
|
2024-07-30 20:06:36 +00:00
|
|
|
ffmpeg_7-full
|
2023-11-26 20:26:49 +00:00
|
|
|
|
|
|
|
# external
|
|
|
|
libnotify
|
|
|
|
i3lock
|
|
|
|
rofi
|
|
|
|
rofimoji
|
|
|
|
feh
|
|
|
|
xorg.xinput
|
|
|
|
arandr
|
|
|
|
flameshot
|
|
|
|
tesseract5
|
|
|
|
imagemagick
|
|
|
|
xclip
|
|
|
|
kitty
|
|
|
|
xmacro
|
|
|
|
brightnessctl
|
|
|
|
drawing
|
|
|
|
libqalculate
|
|
|
|
|
|
|
|
# custom scripts
|
|
|
|
window-screenshot
|
|
|
|
desktop-ctl
|
|
|
|
ocr-screenshot
|
|
|
|
menu-qalc
|
|
|
|
|
|
|
|
# meow
|
|
|
|
oneko
|
2024-01-11 15:34:08 +00:00
|
|
|
|
|
|
|
plover.dev
|
2024-02-28 16:06:04 +00:00
|
|
|
|
|
|
|
mupdf
|
|
|
|
inotify-tools
|
2024-06-12 11:26:05 +00:00
|
|
|
|
|
|
|
logseq
|
2023-11-26 20:26:49 +00:00
|
|
|
];
|
|
|
|
xsession = {
|
|
|
|
enable = true;
|
|
|
|
};
|
2023-02-13 11:54:21 +00:00
|
|
|
};
|
2023-11-26 20:26:49 +00:00
|
|
|
}
|