120 lines
2.4 KiB
Nix
120 lines
2.4 KiB
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
imports = [
|
|
|
|
../../components
|
|
../../system/desktop
|
|
../../system/server/netdata.nix
|
|
|
|
./hardware-configuration.nix
|
|
./packages.nix
|
|
./packages-development.nix
|
|
./syncthing.nix
|
|
./cups.nix
|
|
./tinc.nix
|
|
./tinc_retiolum.nix
|
|
|
|
#./wifi-access-point.nix
|
|
#./wireshark.nix
|
|
#./scanner.nix
|
|
./qemu.nix
|
|
./wireguard.nix
|
|
|
|
./borg.nix
|
|
./trilium.nix
|
|
|
|
./test.nix
|
|
];
|
|
|
|
|
|
components.gui.enable = true;
|
|
components.mainUser.enable = true;
|
|
components.media.enable = true;
|
|
components.network.enable = true;
|
|
components.network.wifi.enable = true;
|
|
components.terminal.enable = true;
|
|
|
|
users.users.mainUser.extraGroups = [ "pipewire" ];
|
|
|
|
services.nginx.enable = true;
|
|
|
|
networking.hostName = "cream";
|
|
|
|
services.flatpak.enable = true;
|
|
|
|
# make sure battery is charged in a way to live for a long time
|
|
services.power-profiles-daemon.enable = false;
|
|
services.tlp = {
|
|
enable = true;
|
|
settings = {
|
|
CPU_BOOST_ON_BAT = 0;
|
|
CPU_SCALING_GOVERNOR_ON_BATTERY = "powersave";
|
|
START_CHARGE_THRESH_BAT0 = 30;
|
|
STOP_CHARGE_THRESH_BAT0 = 85;
|
|
RUNTIME_PM_ON_BAT = "auto";
|
|
};
|
|
};
|
|
|
|
security.wrappers = {
|
|
pmount = {
|
|
source = "${pkgs.pmount}/bin/pmount";
|
|
setuid = true;
|
|
owner = "root";
|
|
group = "root";
|
|
};
|
|
pumount = {
|
|
source = "${pkgs.pmount}/bin/pumount";
|
|
setuid = true;
|
|
owner = "root";
|
|
group = "root";
|
|
};
|
|
};
|
|
|
|
programs.custom.video.enable = false;
|
|
programs.custom.steam.enable = true;
|
|
services.printing.enable = true;
|
|
|
|
# fonts
|
|
# -----
|
|
programs.custom.urxvt.fontSize = 16;
|
|
programs.custom.urxvt.fontType = "vector";
|
|
programs.custom.xterm.fontSize = 16;
|
|
# todo : add xterm fontType
|
|
# programs.custom.xterm.fontType = "vector";
|
|
|
|
virtualisation = {
|
|
docker.enable = true;
|
|
podman.enable = true;
|
|
virtualbox = {
|
|
host.enable = false;
|
|
guest.x11 = false;
|
|
guest.enable = false;
|
|
};
|
|
};
|
|
|
|
configuration.desktop = {
|
|
width = 2256;
|
|
height = 1504;
|
|
};
|
|
|
|
services.xserver.desktopManager.gnome.enable = true;
|
|
#services.xserver.displayManager.lightdm.enable = false;
|
|
#services.xserver.displayManager.sddm.enable = true;
|
|
|
|
custom.samba-share = {
|
|
enable = false;
|
|
folders = {
|
|
share = "/home/share";
|
|
video = "/home/video-material";
|
|
};
|
|
};
|
|
|
|
|
|
# for congress and streaming
|
|
hardware.opengl = {
|
|
enable = true;
|
|
};
|
|
|
|
system.stateVersion = "22.11";
|
|
|
|
}
|