traverseda-nixos-config/nixos/configuration.nix

186 lines
5.3 KiB
Nix
Raw Normal View History

2024-04-23 07:59:37 -03:00
# This is your system's configuration file.
# Use this to configure your system environment (it replaces /etc/nixos/configuration.nix)
2024-05-14 08:39:54 -03:00
{ inputs, outputs, lib, config, pkgs, hostname, specialArgs, options, ... }: {
2024-04-23 07:59:37 -03:00
# You can import other NixOS modules here
imports = [
# If you want to use modules your own flake exports (from modules/nixos):
# outputs.nixosModules.example
# Or modules from other flakes (such as nixos-hardware):
# inputs.hardware.nixosModules.common-cpu-amd
# inputs.hardware.nixosModules.common-ssd
# You can also split up your configuration and import pieces of it here:
# ./users.nix
# Import your generated (nixos-generate-config) hardware configuration
2024-05-13 12:42:45 -03:00
./hardware/${hostname}.nix
2024-05-18 18:40:15 -03:00
inputs.home-manager.nixosModules.home-manager
2024-04-23 07:59:37 -03:00
];
nixpkgs = {
# You can add overlays here
overlays = [
# Add overlays your own flake exports (from overlays and pkgs dir):
outputs.overlays.additions
outputs.overlays.modifications
outputs.overlays.unstable-packages
# You can also add overlays exported from other flakes:
# neovim-nightly-overlay.overlays.default
# Or define it inline, for example:
# (final: prev: {
# hi = final.hello.overrideAttrs (oldAttrs: {
# patches = [ ./change-hello-to-hi.patch ];
# });
# })
];
# Configure your nixpkgs instance
config = {
# Disable if you don't want unfree packages
allowUnfree = true;
};
};
2024-05-13 12:42:45 -03:00
networking.hostName = hostname; # Define your hostname.
2024-05-11 07:47:11 -03:00
networking.networkmanager.enable = true;
nix.settings.trusted-users = [ "root" "traverseda" "logic11"];
2024-05-18 21:20:55 -03:00
2024-05-14 08:54:50 -03:00
virtualisation.vmVariant = {
# following configuration is added only when building VM with build-vm
virtualisation.cores = 4;
virtualisation.memorySize = 4096;
};
2024-04-23 07:59:37 -03:00
# This will add each flake input as a registry
# To make nix3 commands consistent with your flake
nix.registry = (lib.mapAttrs (_: flake: {inherit flake;})) ((lib.filterAttrs (_: lib.isType "flake")) inputs);
# This will additionally add your inputs to the system's legacy channels
# Making legacy nix commands consistent as well, awesome!
nix.nixPath = ["/etc/nix/path"];
environment.etc =
lib.mapAttrs'
(name: value: {
name = "nix/path/${name}";
value.source = value.flake;
})
config.nix.registry;
nix.settings = {
# Enable flakes and new 'nix' command
experimental-features = "nix-command flakes";
};
2024-05-23 21:53:07 -03:00
#Deduplicate nix store on a timer
nix.optimise.automatic = true;
2024-04-23 07:59:37 -03:00
2024-06-05 12:24:17 -03:00
#Delete old generations
nix.gc.automatic = true;
nix.gc.dates = "weekly";
nix.gc.options = "--delete-older-than 30d";
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
};
2024-06-19 10:54:54 -03:00
environment.systemPackages = [
2024-05-11 16:19:50 -03:00
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget
pkgs.mosh
2024-06-02 12:25:41 -03:00
pkgs.htop
2024-05-11 16:19:50 -03:00
pkgs.git
pkgs.usbutils
pkgs.pciutils
2024-06-19 10:54:54 -03:00
pkgs.lsof
pkgs.p7zip
2024-05-24 16:39:30 -03:00
pkgs.atool
2024-05-31 09:36:03 -03:00
pkgs.comma
2024-05-31 09:42:28 -03:00
pkgs.home-manager
2024-06-19 10:54:54 -03:00
pkgs.appimage-run
2024-06-11 16:44:13 -03:00
pkgs.linuxPackages.usbip
2024-05-11 16:19:50 -03:00
];
2024-05-24 13:04:13 -03:00
programs.git = {
enable = true;
lfs.enable = true;
};
2024-05-21 07:17:25 -03:00
boot.binfmt.registrations.appimage = {
wrapInterpreterInShell = false;
interpreter = "${pkgs.appimage-run}/bin/appimage-run";
recognitionType = "magic";
offset = 0;
mask = ''\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\xff'';
magicOrExtension = ''\x7fELF....AI\x02'';
};
2024-05-11 16:19:50 -03:00
2024-04-25 12:28:13 -03:00
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2024-05-11 13:12:04 -03:00
services.automatic-timezoned.enable = true;
2024-04-25 12:28:13 -03:00
virtualisation.docker.enable = true;
virtualisation.docker.liveRestore = false;
2024-04-23 07:59:37 -03:00
2024-04-25 12:28:13 -03:00
#Puts fonts in /run/current-system/sw/share/X11/fonts
fonts.fontDir.enable = true;
programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh;
2024-04-23 07:59:37 -03:00
users.users = {
2024-04-25 12:28:13 -03:00
traverseda = {
# You can set an initial password for your user.
# If you do, you can skip setting a root password by passing '--no-root-passwd' to nixos-install.
# Be sure to change it (using passwd) after rebooting!
2024-04-25 12:28:13 -03:00
initialPassword = "changeme";
2024-04-23 07:59:37 -03:00
isNormalUser = true;
openssh.authorizedKeys.keys = [
];
2024-05-13 12:42:45 -03:00
extraGroups = [ "wheel" "dialout" "networkmanager" "dialout" "docker" "plugdev" "vboxusers" ];
2024-04-23 07:59:37 -03:00
};
};
2024-05-18 18:40:15 -03:00
home-manager = {
extraSpecialArgs = { inherit inputs outputs; };
2024-05-18 21:20:55 -03:00
backupFileExtension = ".bak";
2024-05-18 18:40:15 -03:00
users = {
2024-05-26 09:37:00 -03:00
traverseda = import ../home-manager/traverseda/home.nix;
2024-05-18 18:40:15 -03:00
};
};
2024-04-23 07:59:37 -03:00
# This setups a SSH server. Very important if you're setting up a headless system.
# Feel free to remove if you don't need it.
services.openssh = {
enable = true;
settings = {
# Forbid root login through SSH.
PermitRootLogin = "no";
# Use keys only. Remove if you want to SSH using password (not recommended)
2024-04-25 12:28:13 -03:00
PasswordAuthentication = true;
2024-05-14 07:30:11 -03:00
AllowUsers = [ "traverseda" ];
2024-04-23 07:59:37 -03:00
};
};
2024-05-23 21:53:07 -03:00
system.autoUpgrade = {
enable = true;
flake = "git+https://codeberg.org/traverseda/nixos-config#${hostname}";
2024-05-23 21:53:07 -03:00
flags = [
];
dates = "02:00";
randomizedDelaySec = "45min";
};
2024-05-24 17:33:02 -03:00
programs.nix-ld.enable = true;
programs.nix-ld.libraries = with pkgs; [
];
2024-04-23 07:59:37 -03:00
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
system.stateVersion = "23.05";
}