171 lines
3.7 KiB
Nix
171 lines
3.7 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
let
|
|
in {
|
|
imports = [
|
|
../sway/sway.nix
|
|
./social.nix
|
|
./signal-work.nix
|
|
./thunderbird.nix
|
|
./bitwarden.nix
|
|
./rustdesk.nix
|
|
./rustdesk-epicenter.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
alacritty
|
|
apache-directory-studio
|
|
cryptomator
|
|
fontforge
|
|
freecad
|
|
firefox
|
|
openscad
|
|
orca-slicer
|
|
|
|
(where-is-my-sddm-theme.override {
|
|
themeConfig.General = {
|
|
showUsersByDefault = true;
|
|
background = "/nix/persist/system/wallpaper.png";
|
|
backgroundFill = "#252525";
|
|
backgroundFillMode="Image.Pad";
|
|
passwordInputWidth = 0.25;
|
|
passwordInputBackground = "#60ffffff";
|
|
passwordFontSize = 28;
|
|
showSessionsByDefault = true;
|
|
sessionsFontSize=24;
|
|
usersFontSize=32;
|
|
};
|
|
variants = ["qt5"];
|
|
})
|
|
|
|
vscode
|
|
code-cursor
|
|
|
|
|
|
dracula-theme
|
|
foot
|
|
fractal
|
|
|
|
gimp
|
|
seahorse
|
|
adwaita-icon-theme
|
|
grim
|
|
hunspell
|
|
hunspellDicts.de_DE
|
|
hunspellDicts.en_US
|
|
libreoffice
|
|
libsForQt5.qtgraphicaleffects
|
|
mako
|
|
moonlight-qt
|
|
nautilus
|
|
netflix
|
|
networkmanagerapplet
|
|
nextcloud-client
|
|
onlyoffice-bin
|
|
obs-studio
|
|
pavucontrol
|
|
pinentry
|
|
rbw
|
|
rofi-rbw
|
|
swayimg
|
|
thunderbird
|
|
vlc
|
|
wl-clipboard
|
|
wtype
|
|
xfce.thunar
|
|
xfce.thunar-volman
|
|
xfce.thunar-archive-plugin
|
|
xorg.libX11
|
|
xorg.libXcursor
|
|
xorg.libXi
|
|
xorg.libXrandr
|
|
yubioath-flutter
|
|
];
|
|
|
|
environment.variables.XCURSOR_SIZE = "24";
|
|
|
|
services.displayManager.defaultSession = "sway";
|
|
services.displayManager.sddm = {
|
|
enable = true;
|
|
wayland.enable = true;
|
|
theme = "where_is_my_sddm_theme_qt5";
|
|
};
|
|
|
|
xdg.portal = {
|
|
enable = true;
|
|
wlr.enable = true;
|
|
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
|
};
|
|
|
|
services.gnome.gnome-keyring.enable = true;
|
|
services.gvfs.enable = true;
|
|
|
|
virtualisation.virtualbox.host.enable = true;
|
|
users.extraGroups.vboxusers.members = [ "dominik" ];
|
|
|
|
fonts.packages = with pkgs; [
|
|
noto-fonts
|
|
noto-fonts-cjk-sans
|
|
noto-fonts-emoji
|
|
nerd-fonts._0xproto
|
|
nerd-fonts.droid-sans-mono
|
|
open-sans
|
|
];
|
|
|
|
programs.light.enable = true;
|
|
|
|
hardware.graphics.extraPackages = [ pkgs.amdvlk ];
|
|
|
|
hardware.bluetooth.enable = true;
|
|
hardware.bluetooth.powerOnBoot = true;
|
|
hardware.bluetooth.settings = {
|
|
General = { ControllerMode = "bredr"; };
|
|
};
|
|
services.blueman.enable = true;
|
|
|
|
services.tlp.enable = true;
|
|
services.tlp.settings = {
|
|
CPU_SCALING_GOVERNOR_ON_AC = "performance";
|
|
CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
|
|
CPU_ENERGY_PERF_POLICY_ON_BAT = "power";
|
|
CPU_ENERGY_PERF_POLICY_ON_AC = "performance";
|
|
START_CHARGE_THRESH_BAT0 = 60;
|
|
STOP_CHARGE_THRESH_BAT0 = 80;
|
|
};
|
|
|
|
boot.plymouth = {
|
|
enable = true;
|
|
theme = "spin";
|
|
themePackages = with pkgs; [
|
|
(adi1090x-plymouth-themes.override {
|
|
selected_themes = [ "spin" ];
|
|
})
|
|
];
|
|
};
|
|
|
|
security.polkit.enable = true;
|
|
systemd.user.services.polkit-gnome-authentication-agent-1 = {
|
|
description = "polkit-gnome-authentication-agent-1";
|
|
wantedBy = [ "graphical-session.target" ];
|
|
wants = [ "graphical-session.target" ];
|
|
after = [ "graphical-session.target" ];
|
|
serviceConfig = {
|
|
Type = "simple";
|
|
ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
|
|
Restart = "on-failure";
|
|
RestartSec = 1;
|
|
TimeoutStopSec = 10;
|
|
};
|
|
};
|
|
|
|
services.flatpak.enable = true;
|
|
systemd.services.flatpak-repo = {
|
|
wantedBy = [ "multi-user.target" ];
|
|
path = [ pkgs.flatpak ];
|
|
script = ''
|
|
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
|
'';
|
|
};
|
|
|
|
environment.variables.TERMINAL_COMMAND = "alacritty";
|
|
}
|