This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-nix/nix/systems/default.nix

20 lines
306 B
Nix

{ config, lib, pkgs, ... }: {
# imports
imports = [
./bootloader.nix
./desktop.nix
./hardware.nix
./locality.nix
./networking.nix
./nix.nix
./packages.nix
./security.nix
./simon.nix
./sound.nix
];
# system state version
system.stateVersion = "23.11";
}