nix-config/hosts/gampo/configuration.nix

85 lines
2.0 KiB
Nix
Raw Normal View History

2025-05-04 02:47:36 +02:00
{
config,
pkgs,
inputs,
...
}: {
imports = [
inputs.sops-nix.nixosModules.sops
2025-05-20 17:36:33 +02:00
./hardware-configuration.nix
2025-07-05 00:02:39 +02:00
# ./services
../../system
2025-05-04 02:47:36 +02:00
];
system = {
2025-07-05 00:02:39 +02:00
boot = {
plymouth.enable = true;
kernel = {
cpuVendor = "intel";
package = pkgs.linuxPackages;
modules = ["i915"];
};
systemd-boot = true;
};
desktop = {
hyprland.enable = true;
xserver = {
enable = true;
de = "gnome";
};
};
dev.docker = {
2025-05-04 02:47:36 +02:00
enable = true;
podman.enable = true;
2025-07-05 00:02:39 +02:00
autoprune.enable = true;
2025-05-04 02:47:36 +02:00
};
2025-07-05 00:02:39 +02:00
hardware = {
bluetooth.enable = true;
corne.allowHidAccess = true;
ibmTrackpoint.disable = true;
opentablet.enable = true;
sound.enable = true;
};
misc.keymap = "fr-bepo";
2025-05-04 02:47:36 +02:00
networking = {
hostname = "gampo";
id = "0630b33f";
hostFiles = [config.sops.secrets.extraHosts.path];
};
2025-07-05 00:02:39 +02:00
packages = {
appimage.enable = true;
flatpak.enable = true;
nix = {
nix-ld.enable = true;
trusted-users = ["root" "phundrak"];
};
};
programs.steam.enable = true;
services = {
fwupd.enable = true;
ssh.enable = true;
};
users = {
root.disablePassword = true;
phundrak.enable = true;
};
2025-05-04 02:47:36 +02:00
};
2025-07-05 00:02:39 +02:00
sops.secrets.extraHosts = {
inherit (config.users.users.root) group;
owner = config.users.users.phundrak.name;
mode = "0440";
};
2025-05-20 17:36:33 +02:00
2025-05-04 02:47:36 +02:00
security.rtkit.enable = true;
# 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 = "23.11"; # Did you read the comment?
}