nixos/home/common/core/default.nix

13 lines
166 B
Nix
Raw Permalink Normal View History

2024-05-17 10:54:53 +01:00
{ config, lib, pkgs, outputs, ... }:
2024-05-13 22:17:40 +01:00
{
imports = [
2024-05-17 10:54:53 +01:00
./zsh.nix
2024-05-26 01:51:57 +01:00
./nixvim.nix
2024-05-13 22:17:40 +01:00
] ;
2024-05-26 01:51:57 +01:00
home.packages = [
pkgs.ripgrep
];
home.stateVersion = "23.11";
2024-05-13 22:17:40 +01:00
}