move more stuff into modules

This commit is contained in:
Vinzenz Schroeter 2025-09-15 17:52:33 +02:00
parent f5e1b9c7ee
commit f89c75aad2
12 changed files with 116 additions and 116 deletions

View file

@ -0,0 +1,28 @@
{ pkgs, ... }:
{
programs.firefox.enable = true;
environment.systemPackages = with pkgs; [
lm_sensors
libreoffice-qt6
];
fonts = {
enableDefaultPackages = true;
fontconfig.defaultFonts.monospace = [ "FiraCode Nerd Font" ];
packages = with pkgs; [
nerd-fonts.fira-code
roboto-mono
recursive
];
};
hardware.logitech.wireless = {
enable = true;
enableGraphical = true;
};
# RDP connections
services.gnome.gnome-remote-desktop.enable = true;
networking.firewall.allowedTCPPorts = [ 3389 ];
}