2022-08-02 09:55:12 +02:00
|
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page
|
|
|
|
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
|
|
|
|
|
2023-04-12 14:14:47 +02:00
|
|
|
|
{ inputs, config, pkgs, lib, ... }:
|
2022-08-02 09:55:12 +02:00
|
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
../common.nix
|
2023-02-08 12:48:31 +01:00
|
|
|
|
../modules
|
2022-08-02 09:55:12 +02:00
|
|
|
|
];
|
|
|
|
|
|
2023-04-12 14:14:47 +02:00
|
|
|
|
nixpkgs = {
|
|
|
|
|
overlays = [
|
|
|
|
|
(self: super: {
|
|
|
|
|
linux_zen_xeniafied = pkgs.linuxPackagesFor (pkgs.linuxKernel.kernels.linux_zen.override {
|
|
|
|
|
structuredExtraConfig = with lib.kernel; {
|
|
|
|
|
#"FB" = yes;
|
|
|
|
|
#"FRAMEBUFFER_CONSOLE" = yes;
|
|
|
|
|
#"VGA_CONSOLE" = yes;
|
|
|
|
|
#"VIDEO_SELECT" = yes;
|
|
|
|
|
LOGO = lib.mkForce yes;
|
|
|
|
|
LOGO_LINUX_CLUT224 = yes;
|
|
|
|
|
};
|
|
|
|
|
ignoreConfigErrors = true;
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
2022-08-12 12:14:32 +02:00
|
|
|
|
jade = {
|
2023-02-03 17:43:17 +01:00
|
|
|
|
flatpak.enable = true;
|
2023-02-14 20:42:51 +01:00
|
|
|
|
desktop = {
|
|
|
|
|
enable = true;
|
|
|
|
|
compositing.enable = true;
|
|
|
|
|
creative.enable = true;
|
|
|
|
|
syncthing.enable = true;
|
|
|
|
|
kdeconnect.enable = true;
|
|
|
|
|
cloud.enable = true;
|
|
|
|
|
social.enable = true;
|
|
|
|
|
gaming.enable = true;
|
2023-03-11 14:41:01 +01:00
|
|
|
|
ios-compat.enable = true;
|
2023-04-12 14:14:47 +02:00
|
|
|
|
mail.enable = true;
|
2023-02-14 20:42:51 +01:00
|
|
|
|
};
|
2022-09-02 08:40:33 +02:00
|
|
|
|
terminal.enable = true;
|
|
|
|
|
neovim.enable = true;
|
2022-09-02 17:07:30 +02:00
|
|
|
|
zsh.enable = true;
|
2022-08-12 12:14:32 +02:00
|
|
|
|
};
|
|
|
|
|
|
2022-08-02 09:55:12 +02:00
|
|
|
|
# monitor control
|
|
|
|
|
services.ddccontrol.enable = true;
|
|
|
|
|
|
|
|
|
|
# Use the systemd-boot EFI boot loader.
|
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
# latest linux kernel
|
2023-04-12 14:14:47 +02:00
|
|
|
|
#boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
|
|
|
boot.kernelPackages = pkgs.linux_zen_xeniafied;
|
|
|
|
|
boot.kernelPatches = [
|
|
|
|
|
{
|
|
|
|
|
name = "fomx";
|
|
|
|
|
patch = ../other/0001-fomx.patch;
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
programs.corectrl.enable = true;
|
2022-08-02 09:55:12 +02:00
|
|
|
|
|
|
|
|
|
networking.hostName = "monosodium-glutamate-g";
|
|
|
|
|
|
|
|
|
|
services.xserver.layout = "us";
|
|
|
|
|
services.xserver.xkbVariant = "altgr-intl";
|
|
|
|
|
|
2023-01-29 13:43:21 +01:00
|
|
|
|
services.openssh.settings.PermitRootLogin = "without-password";
|
2023-01-08 22:22:48 +01:00
|
|
|
|
|
2022-08-02 09:55:12 +02:00
|
|
|
|
hardware.bluetooth.enable = true;
|
|
|
|
|
hardware.keyboard.uhk.enable = true;
|
2022-12-13 20:16:03 +01:00
|
|
|
|
hardware.enableRedistributableFirmware = true;
|
2022-08-02 09:55:12 +02:00
|
|
|
|
|
|
|
|
|
# missing: menu-qalc picom-jonaburg
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
# TODO: clean up.
|
2023-01-20 15:17:18 +01:00
|
|
|
|
libGL
|
2023-03-20 23:40:08 +01:00
|
|
|
|
libreoffice-fresh
|
2023-04-12 14:14:47 +02:00
|
|
|
|
wireshark
|
|
|
|
|
|
|
|
|
|
zenstates zenmonitor
|
|
|
|
|
nvtop-amd
|
|
|
|
|
radeontop
|
|
|
|
|
rgp
|
2022-08-02 09:55:12 +02:00
|
|
|
|
];
|
2023-04-12 14:14:47 +02:00
|
|
|
|
programs.wireshark.enable = true;
|
2022-08-02 09:55:12 +02:00
|
|
|
|
|
|
|
|
|
environment.pathsToLink = [
|
|
|
|
|
"/share/nix-direnv"
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
services.blueman.enable = true;
|
|
|
|
|
|
|
|
|
|
services.gnome.gnome-keyring.enable = true;
|
|
|
|
|
programs.seahorse.enable = true;
|
|
|
|
|
security.pam.services.jade.enableGnomeKeyring = true;
|
|
|
|
|
|
|
|
|
|
# Copy the NixOS configuration file and link it from the resulting system
|
|
|
|
|
# (/run/current-system/configuration.nix). This is useful in case you
|
|
|
|
|
# accidentally delete configuration.nix.
|
|
|
|
|
# system.copySystemConfiguration = true;
|
|
|
|
|
|
|
|
|
|
# networking.firewall.allowedTCPPorts = [ 4713 ];
|
|
|
|
|
systemd.services."NetworkManager-wait-online".enable = false;
|
2022-12-13 18:55:21 +01:00
|
|
|
|
services.xserver.enable = true;
|
|
|
|
|
|
2023-02-26 21:47:04 +01:00
|
|
|
|
systemd.services = {
|
|
|
|
|
create-swapfile = {
|
|
|
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
|
wantedBy = [ "swap-swapfile.swap" ];
|
|
|
|
|
script = ''
|
|
|
|
|
swapfile="/swap/swapfile"
|
|
|
|
|
if [[ -f "$swapfile" ]]; then
|
|
|
|
|
echo "Swap file $swapfile already exists, taking no action"
|
|
|
|
|
else
|
|
|
|
|
echo "Setting up swap file $swapfile"
|
|
|
|
|
${pkgs.coreutils}/bin/truncate -s 0 "$swapfile"
|
|
|
|
|
${pkgs.e2fsprogs}/bin/chattr +C "$swapfile"
|
|
|
|
|
fi
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
};
|
2022-08-02 09:55:12 +02:00
|
|
|
|
|
|
|
|
|
# release channel
|
|
|
|
|
system.stateVersion = "22.05"; # Did you read the comment?
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-02 08:40:33 +02:00
|
|
|
|
|
2022-09-02 17:07:30 +02:00
|
|
|
|
|