Files
nixos/nixos/biscuit/configuration.nix
T
2025-05-20 05:56:07 -05:00

23 lines
382 B
Nix

{
config,
lib,
pkgs,
...
}: {
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
../../modules/system.nix
../../modules/xserver.nix
];
environment.systemPackages = with pkgs; [
vim
wget
wl-clipboard
];
nix.settings.experimental-features = ["nix-command" "flakes"];
system.stateVersion = "25.05";
}