nixos-configuration/nix-os/core.nix

131 lines
3 KiB
Nix
Raw Normal View History

2023-12-12 00:48:10 +01: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-12-12 00:48:10 +01:00
{ config, pkgs, ... }:
{
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2023-12-22 00:54:40 +01:00
# kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
2023-12-12 00:48:10 +01:00
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Enable networking
networking.networkmanager.enable = true;
# X11 and desktop/display manager is enabled using imported files
# Enable CUPS to print documents.
services.printing.enable = true;
# Enable flatpak, some software is newer here unfortunately
services.flatpak.enable = true;
# Enable sound with pipewire.
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# Enable audio interfaces renaming
wireplumber.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; [
wget
git
ffmpeg
yt-dlp
mpv
htop
btop
2024-05-02 10:00:04 +02:00
fastfetch
2023-12-12 00:48:10 +01:00
ranger
gimp
inkscape
krita
smartmontools
ddrescue
];
# terminal text editor
programs.neovim = {
enable = true;
viAlias = true;
defaultEditor = true;
configure = {
customRC = ''
set number
set hlsearch
set incsearch
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
set autoindent
syntax on
set encoding=utf-8
set wildmode=longest,list,full
set listchars=space:·,tab:»
set indentkeys-=0#
'';
2023-12-12 12:38:55 +01:00
packages.myVimPackage = with pkgs.vimPlugins; {
start = [
guess-indent-nvim
2024-03-01 22:00:49 +01:00
vim-visual-multi
2023-12-12 12:38:55 +01:00
];
};
2023-12-12 00:48:10 +01:00
};
};
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
};
# Enable fail2ban because of the OpenSSH server
services.fail2ban = {
enable = true;
maxretry = 10;
bantime = "7d";
};
# Enable the OpenSSH daemon.
services.openssh = {
enable = true;
ports = [
22
8022
];
extraConfig = ''
X11Forwarding yes
'';
};
# Disable firewall
networking.firewall.enable = false;
2023-12-12 00:48:10 +01:00
# 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
2023-12-12 00:48:10 +01:00
# 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 = "23.05"; # Did you read the comment?
# I am lazy
}