nix-config/hosts/base/default.nix

183 lines
4.3 KiB
Nix
Raw Normal View History

2024-09-16 22:04:47 +02: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).
{
config,
pkgs,
2024-09-20 23:44:08 +02:00
inputs,
...
2024-09-20 23:44:08 +02:00
}:
2024-09-16 22:04:47 +02:00
{
2024-09-20 23:15:30 +02:00
imports = [
2024-09-24 10:13:04 +02:00
inputs.home-manager.nixosModules.home-manager
inputs.nix-flatpak.nixosModules.nix-flatpak
2024-09-20 23:44:08 +02:00
../../nixosModules
];
2024-09-16 22:04:47 +02:00
# Bootloader.
2024-09-20 23:44:08 +02:00
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
2024-09-16 22:04:47 +02:00
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. Not needed if using GNOME
# Enable networking
networking.networkmanager.enable = true;
# Set your time zone.
time.timeZone = "Europe/Prague";
# Select internationalisation properties.
i18n.defaultLocale = "en_GB.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "cs_CZ.UTF-8";
LC_IDENTIFICATION = "cs_CZ.UTF-8";
LC_MEASUREMENT = "cs_CZ.UTF-8";
LC_MONETARY = "cs_CZ.UTF-8";
LC_NAME = "cs_CZ.UTF-8";
LC_NUMERIC = "cs_CZ.UTF-8";
LC_PAPER = "cs_CZ.UTF-8";
LC_TELEPHONE = "cs_CZ.UTF-8";
LC_TIME = "cs_CZ.UTF-8";
};
# Configure keymap in X11
services.xserver.xkb = {
layout = "cz";
variant = "bksl";
};
# Configure console keymap
console.keyMap = "cz-lat2";
# Enable CUPS to print documents.
services.printing = {
enable = true;
drivers = [ pkgs.samsung-unified-linux-driver ];
2024-09-16 22:04:47 +02:00
};
# Define a user account. Don't forget to set a password with passwd.
users.users.krop = {
isNormalUser = true;
description = "Jakub Kropacek";
extraGroups = [
"networkmanager"
"wheel"
];
2024-09-16 22:06:27 +02:00
shell = pkgs.zsh;
2024-09-16 22:04:47 +02:00
};
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# Enable flakes
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
2024-09-16 22:04:47 +02:00
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
2024-09-19 08:16:59 +02:00
alacritty
2024-09-25 22:24:14 +02:00
alacritty-theme
2024-09-19 08:16:59 +02:00
nixd
nil
2024-09-16 22:04:47 +02:00
fzf
zoxide
jetbrains-mono
2024-09-19 08:16:59 +02:00
mattermost-desktop
gh
gparted
2024-09-19 17:14:01 +02:00
prismlauncher # REMOVE AND MOVE TO games module after refactoring
2024-09-20 14:44:50 +02:00
joplin-desktop
2024-09-24 10:23:11 +02:00
albert
2024-10-07 15:21:50 +02:00
(octaveFull.withPackages (
ps: with ps; [
octavePackages.signal
]
))
2024-10-08 23:03:40 +02:00
wireshark
2024-09-16 22:04:47 +02:00
];
programs = {
tmux.enable = true;
zsh.enable = true;
git.enable = true;
dconf.enable = true;
thunderbird.enable = true;
firefox.enable = true;
2024-10-03 14:11:02 +02:00
gnupg.agent = {
enable = true;
};
nix-ld = {
enable = true;
};
2024-09-16 22:04:47 +02:00
};
2024-09-17 12:15:52 +02:00
services.tailscale.enable = true;
2024-09-16 22:04:47 +02:00
services.flatpak = {
enable = true;
remotes = [
{
name = "flathub";
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
}
{
name = "flathub-beta";
location = "https://flathub.org/beta-repo/flathub-beta.flatpakrepo";
}
2024-09-16 22:04:47 +02:00
];
packages = [
"org.gnome.World.PikaBackup"
"ca.desrt.dconf-editor"
"org.onlyoffice.desktopeditors"
"tv.kodi.Kodi"
2024-09-24 19:14:17 +02:00
"com.valvesoftware.Steam"
"com.github.tchx84.Flatseal"
2024-10-04 09:08:31 +02:00
"io.dbeaver.DBeaverCommunity"
2024-09-16 22:04:47 +02:00
];
};
services.avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
# 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;
2024-09-19 17:14:01 +02:00
networking = {
nftables.enable = true;
firewall.checkReversePath = "loose";
};
2024-09-16 22:04:47 +02:00
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
# 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. Its 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 = "24.05"; # Did you read the comment?
}