nixos/system/shared.nix

108 lines
2 KiB
Nix
Raw Normal View History

2024-07-07 18:11:51 +01:00
{pkgs, user, ...}: {
documentation.nixos.enable = false;
nix = {
settings = {
warn-dirty = false;
experimental-features = "nix-command flakes";
auto-optimise-store = true;
substituters = ["https://nix-gaming.cachix.org"];
trusted-public-keys = ["nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4="];
};
};
nixpkgs = {
config = {
allowUnfree = true;
};
};
boot = {
kernelParams = ["nohibernate"];
tmp.cleanOnBoot = true;
loader = {
efi.canTouchEfiVariables = true;
grub = {
device = "nodev";
efiSupport = true;
enable = true;
useOSProber = true;
timeoutStyle = "menu";
};
timeout = 300;
};
};
networking = {
networkmanager.enable = true;
enableIPv6 = false;
};
time.timeZone = "Europe/London";
i18n.defaultLocale = "en_GB.UTF-8";
services = {
flatpak.enable = true;
dbus.enable = true;
picom.enable = true;
xserver = {
enable = true;
windowManager.i3.enable = true;
layout = "us";
displayManager = {
lightdm.enable = true;
};
};
};
users.users.vylpes = {
isNormalUser = true;
extraGroups = [
"docker"
"flatpak"
"wheel"
];
};
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
};
fonts = {
packages = with pkgs; [
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
font-awesome
hack-font
];
fontconfig = {
enable = true;
defaultFonts = {
monospace = ["Hack"];
serif = ["Noto Serif" "Source Han Serif"];
sansSerif = ["Noto Sans" "Source Han Sans"];
};
};
};
environment.systemPackages = with pkgs; [
2024-07-07 18:34:45 +01:00
docker
2024-07-07 18:11:51 +01:00
];
2024-07-07 18:34:45 +01:00
virtualisation.docker.enable = true;
2024-07-07 18:45:33 +01:00
xdg.portal = {
enable = true;
config.common.default = "*";
extraPortals = [pkgs.xdg-desktop-portal-gtk];
};
2024-07-07 18:44:00 +01:00
2024-07-07 18:11:51 +01:00
system.stateVersion = "24.05";
}