nix-configs/monosodium-glutamate-g/configuration.nix

80 lines
2.1 KiB
Nix
Raw Normal View History

2022-08-02 07:55:12 +00: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).
2022-12-13 17:57:27 +00:00
{ inputs, config, pkgs, ... }:
2022-08-02 07:55:12 +00:00
{
imports = [
./hardware-configuration.nix
../common.nix
../modules
2022-08-02 07:55:12 +00:00
];
2022-08-12 10:14:32 +00:00
jade = {
flatpak.enable = true;
2022-08-12 10:14:32 +00:00
desktop.enable = true;
desktop.compositing = true;
2022-09-02 06:40:33 +00:00
terminal.enable = true;
neovim.enable = true;
2022-09-02 15:07:30 +00:00
zsh.enable = true;
2022-08-12 10:14:32 +00:00
};
2022-08-02 07:55:12 +00: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
boot.kernelPackages = pkgs.linuxPackages_latest;
2022-12-13 17:55:21 +00:00
boot.initrd.kernelModules = [ "amdgpu" ];
2022-08-02 07:55:12 +00:00
networking.hostName = "monosodium-glutamate-g";
services.xserver.layout = "us";
services.xserver.xkbVariant = "altgr-intl";
services.openssh.settings.PermitRootLogin = "without-password";
2023-01-08 21:22:48 +00:00
2022-08-02 07:55:12 +00:00
hardware.bluetooth.enable = true;
hardware.keyboard.uhk.enable = true;
2022-12-13 19:16:03 +00:00
hardware.enableRedistributableFirmware = true;
2022-08-02 07:55:12 +00:00
# missing: menu-qalc picom-jonaburg
environment.systemPackages = with pkgs; [
# TODO: clean up.
nvtop-amd
libGL
2022-08-02 07:55:12 +00: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 17:55:21 +00:00
systemd.tmpfiles.rules = [
"L+ /opt/rocm/hip - - - - ${pkgs.hip}"
];
services.xserver.enable = true;
services.xserver.videoDrivers = [ "amdgpu" ];
2022-08-02 07:55:12 +00:00
# release channel
system.stateVersion = "22.05"; # Did you read the comment?
}
2022-09-02 06:40:33 +00:00
2022-09-02 15:07:30 +00:00