10 lines
258 B
Nix
10 lines
258 B
Nix
# This is your nixos configuration.
|
|
# For home configuration, see /modules/home/*
|
|
{ flake, ... }:
|
|
{
|
|
imports = [
|
|
flake.inputs.self.nixosModules.common
|
|
];
|
|
services.openssh.enable = true;
|
|
nixpkgs.overlays = [ flake.inputs.self.overlays.default ];
|
|
}
|