nix-dotfiles/profiles/base.nix

14 lines
177 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
{
imports =
[
../packages/vim.nix
2023-12-06 22:21:44 +01:00
./sops.nix
];
#nix stuff
nix.gc.automatic = true;
system.autoUpgrade.enable = true;
}