configuration
common
backup.nix
default.nix
initrd.nix
locale.nix
networking.nix
nix.nix
programs.nix
ssh.nix
systemd.nix
user.nix
web.nix
desktop
dn42
gpg-ssh
hydra-build-machine
router
flake
hosts
lib
modules
pkgs
profiles
users
.gitignore
README.md
flake.lock
flake.nix
19 lines
252 B
Nix
19 lines
252 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./backup.nix
|
|
./initrd.nix
|
|
./locale.nix
|
|
./networking.nix
|
|
./nix.nix
|
|
./programs.nix
|
|
./ssh.nix
|
|
./systemd.nix
|
|
./user.nix
|
|
./web.nix
|
|
];
|
|
|
|
services.fstrim.enable = true;
|
|
}
|