mirror of
https://github.com/adrlau/nix-dotfiles.git
synced 2024-12-23 03:07:30 +01:00
14 lines
177 B
Nix
14 lines
177 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
imports =
|
|
[
|
|
../packages/vim.nix
|
|
./sops.nix
|
|
];
|
|
|
|
#nix stuff
|
|
nix.gc.automatic = true;
|
|
system.autoUpgrade.enable = true;
|
|
|
|
}
|