nixos-config/hosts/pennsardin/configuration.nix

34 lines
829 B
Nix
Raw Normal View History

2025-09-04 10:21:17 +02:00
{pkgs, ...}: {
2025-08-21 11:21:15 +02:00
imports = [
2025-09-04 10:21:17 +02:00
../../profiles/workstation-bspwm.nix
../../modules/hardware/bepovim.nix
../../modules/dev/qemu.nix
../../modules/common/nix.nix
2025-08-21 11:21:15 +02:00
];
2025-08-07 01:32:02 +02:00
networking.hostName = "pennsardin";
2025-09-04 10:21:17 +02:00
boot.kernelPackages = pkgs.linuxPackages_latest;
2025-08-21 11:21:15 +02:00
2025-09-04 10:21:17 +02:00
fileSystems."/" = {
device = "/dev/disk/by-uuid/b4e3577b-17ab-4a89-9aeb-4e223be4c75b"; # à adapter si tu as un autre label/disque
fsType = "ext4"; # ou btrfs, xfs, ce que t'as utilisé
2025-08-21 11:21:15 +02:00
};
2025-09-04 10:21:17 +02:00
swapDevices = [];
2025-08-21 11:21:15 +02:00
users.users.lomig = {
2025-08-07 01:32:02 +02:00
isNormalUser = true;
2025-09-04 10:21:17 +02:00
extraGroups = ["networkmanager" "lp" "wheel"];
2025-08-07 01:32:02 +02:00
shell = pkgs.zsh;
};
2025-09-04 10:21:17 +02:00
home-manager = {
useGlobalPkgs = true;
users.lomig = import ../../hm/users/lomig.nix;
2025-08-21 11:21:15 +02:00
};
2025-09-04 10:21:17 +02:00
2025-08-21 11:21:15 +02:00
system.stateVersion = "25.05"; # pour éviter les hurlements inutiles
2025-08-07 01:32:02 +02:00
}
2025-08-31 12:03:52 +02:00
# vim: set ts=2 sw=2 sts=2 et :
2025-09-04 10:21:17 +02:00