nix-dotfiles/profiles/base.nix

14 lines
186 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
{
imports =
[
../packages/vim.nix
../services/ssh.nix
];
#nix stuff
nix.gc.automatic = true;
system.autoUpgrade.enable = true;
}