Copy old config parts + initial application set + unfree fix
This commit is contained in:
@ -11,9 +11,15 @@
|
||||
];
|
||||
|
||||
# Enable flakes
|
||||
# Keep nix-shell from grabage collection for direnv (keep-outputs + keep-derivations)
|
||||
nix = {
|
||||
package = pkgs.nixFlakes;
|
||||
extraOptions = "experimental-features = nix-command flakes";
|
||||
extraOptions = ''
|
||||
experimental-features = nix-command flakes
|
||||
|
||||
keep-outputs = true
|
||||
keep-derivations = true
|
||||
'';
|
||||
};
|
||||
|
||||
# TODO: Understand this
|
||||
@ -28,11 +34,24 @@
|
||||
[ -d "$HOME/.nix-profile" ] || /nix/var/nix/profiles/per-user/$USER/home-manager/activate &> /dev/null
|
||||
'';
|
||||
|
||||
# Kernel
|
||||
boot.kernelPackages = pkgs.linuxPackages_zen;
|
||||
boot.kernelParams = [ "mitigations=off" ];
|
||||
security.protectKernelImage = true;
|
||||
|
||||
# Bootloader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.systemd-boot.configurationLimit = 5;
|
||||
boot.loader.systemd-boot.editor = false;
|
||||
boot.loader.systemd-boot.consoleMode = "max";
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
||||
|
||||
hardware.cpu.intel.updateMicrocode = true;
|
||||
|
||||
# Make /tmp volatile
|
||||
boot.tmpOnTmpfs = true;
|
||||
|
||||
networking.hostName = "nixinator"; # Define your hostname.
|
||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||
|
||||
@ -66,6 +85,7 @@
|
||||
|
||||
# Enable the KDE Plasma Desktop Environment.
|
||||
services.xserver.videoDrivers = ["nvidia"];
|
||||
hardware.nvidia.modesetting.enable = true; # Not officially supported by NVidia
|
||||
services.xserver.displayManager.sddm.enable = true;
|
||||
services.xserver.desktopManager.plasma5.enable = true;
|
||||
services.xserver.desktopManager.plasma5.runUsingSystemd = true;
|
||||
@ -78,6 +98,10 @@
|
||||
|
||||
# Enable CUPS to print documents.
|
||||
services.printing.enable = true;
|
||||
# TODO: Printer driver
|
||||
services.avahi.enable = true; # Network printers
|
||||
services.avahi.nssmdns = true;
|
||||
hardware.sane.enable = true; # Scanning
|
||||
|
||||
# Enable sound with pipewire.
|
||||
sound.enable = true;
|
||||
@ -89,7 +113,7 @@
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
# If you want to use JACK applications, uncomment this
|
||||
#jack.enable = true;
|
||||
jack.enable = true; # We need this for low latency audio
|
||||
|
||||
# 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)
|
||||
@ -103,7 +127,9 @@
|
||||
users.users.christoph = {
|
||||
isNormalUser = true;
|
||||
description = "Christoph";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
extraGroups = [ "networkmanager" "wheel" "audio" "realtime" "docker" "adbusers" "scanner" "lp" ];
|
||||
shell = pkgs.fish;
|
||||
# Do this with HomeManager
|
||||
packages = with pkgs; [
|
||||
# firefox
|
||||
# kate
|
||||
@ -111,16 +137,41 @@
|
||||
];
|
||||
};
|
||||
|
||||
environment.shells = with pkgs; [ fish ];
|
||||
|
||||
# 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
|
||||
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||||
wget
|
||||
git
|
||||
dosfstools
|
||||
ntfs3g
|
||||
e2fsprogs
|
||||
];
|
||||
|
||||
# Auto garbage-collect and optimize store
|
||||
nix.gc.automatic = true;
|
||||
nix.gc.options = "--delete-older-than 5d";
|
||||
nix.autoOptimiseStore = true;
|
||||
nix.optimise.automatic = true;
|
||||
|
||||
# Use all redistributable firmware (i.e. nonfree)
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
|
||||
# Enable automatic upgrades.
|
||||
system.autoUpgrade.enable = false;
|
||||
system.autoUpgrade.allowReboot = false;
|
||||
|
||||
# Docker
|
||||
virtualisation.docker = {
|
||||
enable = true;
|
||||
autoPrune.enable = true;
|
||||
};
|
||||
|
||||
# Some programs need SUID wrappers, can be configured further or are
|
||||
# started in user sessions.
|
||||
# programs.mtr.enable = true;
|
||||
@ -132,11 +183,37 @@
|
||||
# List services that you want to enable:
|
||||
|
||||
# Enable the OpenSSH daemon.
|
||||
# services.openssh.enable = true;
|
||||
services.openssh.enable = true;
|
||||
|
||||
services.journald.extraConfig = ''
|
||||
SystemMaxUse=50M
|
||||
'';
|
||||
|
||||
# TODO: What to transfer to HomeManager?
|
||||
services.lorri.enable = true; # Cache direnv
|
||||
services.locate.enable = true; # Periodically update index
|
||||
services.emacs.enable = false; # timeout?
|
||||
services.fstrim.enable = true;
|
||||
services.xserver.wacom.enable = true;
|
||||
|
||||
# TODO: Other ports (tcp/udp/ssh...)?
|
||||
# Open ports in the firewall.
|
||||
# networking.firewall.allowedTCPPorts = [ ... ];
|
||||
# networking.firewall.allowedUDPPorts = [ ... ];
|
||||
networking.firewall.allowedTCPPorts = [ ];
|
||||
networking.firewall.allowedTCPPortRanges = [
|
||||
{ # KDEConnect
|
||||
from = 1714;
|
||||
to = 1764;
|
||||
}
|
||||
];
|
||||
|
||||
networking.firewall.allowedUDPPorts = [ ];
|
||||
networking.firewall.allowedUDPPortRanges = [
|
||||
{ # KDEConnect
|
||||
from = 1714;
|
||||
to = 1764;
|
||||
}
|
||||
];
|
||||
|
||||
# Or disable the firewall altogether.
|
||||
# networking.firewall.enable = false;
|
||||
|
||||
|
149
home.nix
149
home.nix
@ -9,22 +9,149 @@
|
||||
# Feel free to split up your configuration and import pieces of it here.
|
||||
];
|
||||
|
||||
# Comment out if you wish to disable unfree packages for your system
|
||||
# Comment out if you wish to disable Unfree packages for your system
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
# https://github.com/nix-community/home-manager/issues/2942
|
||||
nixpkgs.config.allowUnfreePredicate = (pkg: true);
|
||||
|
||||
# Enable home-manager and git
|
||||
programs.home-manager.enable = true;
|
||||
programs.git = {
|
||||
enable = true;
|
||||
delta.enable = true;
|
||||
userEmail = "christoph.urlacher@protonmail.com";
|
||||
userName = "ChUrl";
|
||||
# Packages with extra options managed by HomeManager natively
|
||||
programs = {
|
||||
home-manager.enable = true;
|
||||
|
||||
bat = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
command-not-found.enable = true;
|
||||
|
||||
direnv = {
|
||||
enable = true;
|
||||
# enableFishIntegration = true; # Deprecated
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
|
||||
# TODO: Copy config from Arch dots
|
||||
fish = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
firefox = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
fzf = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
|
||||
git = {
|
||||
enable = true;
|
||||
delta.enable = true;
|
||||
userEmail = "christoph.urlacher@protonmail.com";
|
||||
userName = "ChUrl";
|
||||
};
|
||||
|
||||
keychain = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
enableXsessionIntegration = true;
|
||||
agents = [ "ssh" ];
|
||||
keys = [ "id_ed25519" ];
|
||||
};
|
||||
|
||||
# TODO: Copy config from Arch dots
|
||||
kitty = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
mpv.enable = true;
|
||||
|
||||
neovim = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
ssh.enable = true;
|
||||
|
||||
starship = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
|
||||
# TODO: TexLive
|
||||
};
|
||||
programs.neovim.enable = true;
|
||||
programs.firefox.enable = true;
|
||||
|
||||
# Add stuff for your user as you see fit:
|
||||
# home.packages = with pkgs; [ steam ];
|
||||
home.packages = with pkgs; [
|
||||
# CLI Tools
|
||||
# HM exa
|
||||
procs
|
||||
tokei
|
||||
rsync
|
||||
xclip
|
||||
poppler_utils
|
||||
ffmpeg
|
||||
imagemagick
|
||||
|
||||
# Ranger
|
||||
# TODO: Make module out of this
|
||||
ranger
|
||||
ueberzug
|
||||
ffmpegthumbnailer
|
||||
atool
|
||||
p7zip
|
||||
zip
|
||||
unzip
|
||||
unrar
|
||||
libarchive
|
||||
exiftool
|
||||
mediainfo
|
||||
|
||||
# Doom Emacs
|
||||
# TODO: Make module out of this
|
||||
ripgrep
|
||||
fd
|
||||
gcc
|
||||
libgccjit
|
||||
gnumake
|
||||
cmake
|
||||
sqlite
|
||||
python310Packages.pygments
|
||||
inkscape
|
||||
graphviz
|
||||
pandoc
|
||||
nixfmt
|
||||
shellcheck
|
||||
maim
|
||||
xorg.xwininfo
|
||||
xdotool
|
||||
|
||||
# Web
|
||||
discord
|
||||
yt-dlp
|
||||
spotify
|
||||
|
||||
# Tools
|
||||
keepassxc
|
||||
ark
|
||||
anki
|
||||
libsForQt5.dolphin-plugins
|
||||
libsForQt5.kdegraphics-thumbnailers
|
||||
|
||||
# Graphics
|
||||
wacomtablet
|
||||
xournalpp
|
||||
# kdenlive
|
||||
# krita
|
||||
# blender
|
||||
# godot
|
||||
papirus-icon-theme
|
||||
|
||||
# Use NixCommunity binary cache
|
||||
cachix
|
||||
|
||||
# Gaming
|
||||
steam
|
||||
];
|
||||
|
||||
# Nicely reload system units when changing configs
|
||||
systemd.user.startServices = "sd-switch";
|
||||
|
Reference in New Issue
Block a user