nix-configs/modules/desktop/default.nix

180 lines
3.9 KiB
Nix
Raw Normal View History

{
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);
desktop-ctl = import ../../other/scripts/desktop/desktopctl.nix {inherit pkgs;};
# 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);
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
./firefox.nix
./x.nix
];
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.addons = with pkgs; [
fcitx5-mozc
fcitx5-gtk
];
};
2023-02-13 11:54:21 +00:00
programs.seahorse.enable = true;
security.pam.services.jade.enableGnomeKeyring = true;
2023-02-13 11:54:21 +00:00
virtualisation.libvirtd.enable = true;
2023-02-13 11:54:21 +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
];
};
gnome.gnome-keyring.enable = true;
};
programs.xss-lock = {
enable = true;
2023-11-28 20:50:03 +00:00
lockerCommand = "${pkgs.i3lock}/bin/i3lock -c 1d2021";
};
2023-02-13 11:54:21 +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;
};
services.smartd = {
enable = true;
notifications.x11.enable = true;
notifications.test = true;
};
home-manager.users.jade = {pkgs, ...}: {
2024-02-17 22:34:34 +00:00
programs.ssh = {
controlMaster = "yes";
};
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
syncplay
# filemanager
xfce.thunar
xfce.tumbler
xfce.thunar-archive-plugin
2024-07-30 20:06:36 +00:00
file-roller
# media/file viewers
vlc
mpv
evince
nomacs
2024-04-16 19:36:26 +00:00
jellyfin-media-player
# from environment.systemPackages cleanup
xdotool
xorg.xwininfo
gparted
2024-02-13 20:22:25 +00:00
# uhk-agent
cool-retro-term
xdg-desktop-portal-gtk
virt-manager
ddccontrol-db
firebird-emu
gitg
gpick
qdirstat
2024-07-30 20:06:36 +00:00
ffmpeg_7-full
# 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
mupdf
inotify-tools
2024-06-12 11:26:05 +00:00
logseq
];
xsession = {
enable = true;
};
2023-02-13 11:54:21 +00:00
};
}