274 lines
7.7 KiB
Nix
274 lines
7.7 KiB
Nix
# 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’).
|
||
|
||
{ config, pkgs, lib, inputs, ... }:
|
||
|
||
{
|
||
imports =
|
||
[ # Include the results of the hardware scan.
|
||
./hardware-configuration.nix
|
||
(inputs.nixos-hardware.nixosModules.framework-16-7040-amd)
|
||
];
|
||
|
||
# Bootloader.
|
||
boot.loader.systemd-boot.enable = true;
|
||
boot.loader.efi.canTouchEfiVariables = true;
|
||
|
||
# Use latest kernel.
|
||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||
environment.persistence."/persistent" = {
|
||
enable = true;
|
||
hideMounts = true;
|
||
directories = [
|
||
"/var/log"
|
||
"/var/lib/bluetooth"
|
||
"/var/lib/nixos"
|
||
"/var/lib/libvirt"
|
||
"/var/lib/ollama-models"
|
||
"/var/lib/flatpak"
|
||
"/var/lib/tailscale"
|
||
"/etc/NetworkManager/system-connections"
|
||
];
|
||
files = [
|
||
"/etc/machine-id"
|
||
];
|
||
};
|
||
|
||
services.fwupd.enable = true;
|
||
|
||
networking.hostName = "nullstar"; # Define your hostname.
|
||
|
||
# Enable networking
|
||
networking.networkmanager.enable = true;
|
||
|
||
# Set your time zone.
|
||
time.timeZone = "Europe/Athens";
|
||
|
||
# Select internationalisation properties.
|
||
i18n.defaultLocale = "en_GB.UTF-8";
|
||
|
||
i18n.extraLocaleSettings = {
|
||
LC_ADDRESS = "en_GB.UTF-8";
|
||
LC_IDENTIFICATION = "en_GB.UTF-8";
|
||
LC_MEASUREMENT = "en_GB.UTF-8";
|
||
LC_MONETARY = "en_GB.UTF-8";
|
||
LC_NAME = "en_GB.UTF-8";
|
||
LC_NUMERIC = "en_GB.UTF-8";
|
||
LC_PAPER = "en_GB.UTF-8";
|
||
LC_TELEPHONE = "en_GB.UTF-8";
|
||
LC_TIME = "en_GB.UTF-8";
|
||
};
|
||
|
||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||
programs.zsh.enable = true; # home-manager already installs this but nixos complains w/o it
|
||
users.users.xory = {
|
||
isNormalUser = true;
|
||
description = "xory";
|
||
extraGroups = [ "networkmanager" "wheel" "docker" "libvirt" "dialout" ];
|
||
shell = pkgs.zsh;
|
||
initialHashedPassword = "$6$JXLpG5JYMJgZndm9$0sC8uPJ99cYL.hNv3DFQ20ky8tiZoxioe9GlMEanTwAD99LJ175/bHtN6Bm6bYsQG1BVGRdmphnXEcWS9ApoK0";
|
||
};
|
||
|
||
# tailscale
|
||
services.tailscale.enable = true;
|
||
|
||
# nix-ld
|
||
programs.nix-ld.enable = true;
|
||
programs.nix-ld.libraries = with pkgs; [
|
||
libGL
|
||
SDL2
|
||
];
|
||
|
||
# Firejail
|
||
programs.firejail = {
|
||
enable = true;
|
||
wrappedBinaries =
|
||
let
|
||
apps = {
|
||
firefox = {};
|
||
"signal-desktop-bin" = { name = "signal-desktop"; };
|
||
|
||
# UPDATE: Add specific flags for Vesktop here
|
||
vesktop = {
|
||
extraArgs = [
|
||
# Allow talking to the portal for screen sharing requests
|
||
"--dbus-user.talk=org.freedesktop.portal.*"
|
||
# Ensure access to the PipeWire socket (required for the video stream)
|
||
"--whitelist=\${RUNUSER}/pipewire-0"
|
||
];
|
||
};
|
||
|
||
spotify = {};
|
||
obsidian = {};
|
||
};
|
||
in
|
||
lib.mapAttrs (pkg: conf:
|
||
let
|
||
binName = conf.name or pkg;
|
||
# Define default args applied to all apps
|
||
defaultArgs = [
|
||
"--env=GTK_THEME=Adwaita:dark"
|
||
];
|
||
in
|
||
{
|
||
executable = "${pkgs.${pkg}}/bin/${binName}";
|
||
profile = "${pkgs.firejail}/etc/firejail/${binName}.profile";
|
||
# UPDATE: Merge default args with app-specific args
|
||
extraArgs = defaultArgs ++ (conf.extraArgs or []);
|
||
}) apps;
|
||
};
|
||
|
||
# Enable the X11 windowing system.
|
||
# You can disable this if you're only using the Wayland session.
|
||
services.xserver.enable = true;
|
||
|
||
# Enable the KDE Plasma Desktop Environment.
|
||
services.displayManager.sddm.enable = true;
|
||
# services.desktopManager.plasma6.enable = true;
|
||
|
||
# Enable Hyprland.
|
||
programs.hyprland.enable = true;
|
||
|
||
# Configure keymap in X11
|
||
services.xserver.xkb = {
|
||
layout = "us";
|
||
variant = "";
|
||
};
|
||
|
||
services.flatpak.enable = true;
|
||
|
||
# Enable CUPS to print documents.
|
||
services.printing.enable = true;
|
||
services.printing.drivers = [ pkgs.hplip ];
|
||
|
||
programs.gnupg.agent.enable = true;
|
||
|
||
# Enable sound with pipewire.
|
||
services.pulseaudio.enable = false;
|
||
security.rtkit.enable = true;
|
||
services.pipewire = {
|
||
enable = true;
|
||
alsa.enable = true;
|
||
alsa.support32Bit = true;
|
||
pulse.enable = true;
|
||
# If you want to use JACK applications, uncomment this
|
||
#jack.enable = true;
|
||
|
||
# use the example session manager (no others are packaged yet so this is enabled by default,
|
||
# no need to redefine it in your config for now)
|
||
#media-session.enable = true;
|
||
};
|
||
|
||
hardware.bluetooth = {
|
||
enable = true;
|
||
powerOnBoot = true;
|
||
settings = {
|
||
General.Experimental = true;
|
||
General.FastConnectable = true;
|
||
Policy.AutoEnable = true;
|
||
};
|
||
};
|
||
|
||
# Enable touchpad support (enabled default in most desktopManager).
|
||
# services.xserver.libinput.enable = true;
|
||
|
||
# Enable FL16 Input modules
|
||
hardware.inputmodule.enable = true;
|
||
hardware.keyboard.qmk.enable = true;
|
||
|
||
# AMDGPU stuff
|
||
hardware.graphics = {
|
||
enable = true;
|
||
enable32Bit = true;
|
||
extraPackages = with pkgs; [
|
||
libvdpau-va-gl
|
||
rocmPackages.clr.icd
|
||
];
|
||
};
|
||
|
||
services.ollama.enable = true;
|
||
services.ollama.acceleration = "rocm";
|
||
services.ollama.models = "/var/lib/ollama-models";
|
||
|
||
# Enable automatic login for the user.
|
||
services.displayManager.autoLogin.enable = true;
|
||
services.displayManager.autoLogin.user = "xory";
|
||
|
||
# Install firefox.
|
||
programs.firefox.enable = true;
|
||
|
||
# Allow unfree packages
|
||
nixpkgs.config.allowUnfree = true;
|
||
|
||
# List packages installed in system profile. To search, run:
|
||
# $ nix search wget
|
||
environment.systemPackages = with pkgs; [
|
||
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||
# wget
|
||
neovim
|
||
git
|
||
framework-tool
|
||
inputmodule-control
|
||
];
|
||
|
||
programs.steam.enable = true;
|
||
|
||
nix.gc = {
|
||
automatic = true;
|
||
dates = "weekly";
|
||
options = "--delete-older-than 2d";
|
||
};
|
||
|
||
programs.virt-manager.enable = true;
|
||
virtualisation.libvirtd = {
|
||
enable = true;
|
||
qemu = {
|
||
vhostUserPackages = with pkgs; [ virtiofsd ];
|
||
swtpm.enable = true;
|
||
};
|
||
};
|
||
virtualisation.spiceUSBRedirection.enable = true;
|
||
virtualisation.docker.enable = true;
|
||
|
||
services = {
|
||
syncthing = {
|
||
enable = true;
|
||
group = "users";
|
||
user = "xory";
|
||
dataDir = "/home/xory/Sync"; # Default folder for new synced folders
|
||
configDir = "/home/xory/Sync/.config/syncthing"; # Folder for Syncthing's settings and keys
|
||
};
|
||
};
|
||
services.openssh.enable = true; # TODO: add key-based auth
|
||
|
||
# Some programs need SUID wrappers, can be configured further or are
|
||
# started in user sessions.
|
||
# programs.mtr.enable = true;
|
||
# programs.gnupg.agent = {
|
||
# enable = true;
|
||
# enableSSHSupport = true;
|
||
# };
|
||
|
||
# List services that you want to enable:
|
||
|
||
# Enable the OpenSSH daemon.
|
||
# services.openssh.enable = true;
|
||
|
||
# Open ports in the firewall.
|
||
networking.firewall.allowedTCPPorts = [ 8000 22000 ];
|
||
networking.firewall.allowedUDPPorts = [ 8000 22000 21027 ];
|
||
# Or disable the firewall altogether.
|
||
# networking.firewall.enable = false;
|
||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||
|
||
|
||
# This value determines the NixOS release from which the default
|
||
# settings for stateful data, like file locations and database versions
|
||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
||
# this value at the release version of the first install of this system.
|
||
# Before changing this value read the documentation for this option
|
||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||
system.stateVersion = "25.05"; # Did you read the comment?
|
||
|
||
}
|