13 lines
176 B
Nix
13 lines
176 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
{
|
||
|
imports =
|
||
|
[
|
||
|
../packages/vim.nix
|
||
|
./sops.nix
|
||
|
];
|
||
|
|
||
|
#nix stuff
|
||
|
nix.gc.automatic = true;
|
||
|
system.autoUpgrade.enable = true;
|
||
|
|
||
|
}
|