mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 03:37:18 +00:00
15 lines
333 B
Nix
15 lines
333 B
Nix
{ pkgs, config, lib, currentSystem, ... }:
|
|
|
|
let
|
|
inherit (lib.systems.elaborate { system = builtins.currentSystem; }) isLinux isDarwin;
|
|
in
|
|
{
|
|
home.stateVersion = "22.05";
|
|
home.packages = import ./packages.nix { inherit lib config pkgs isDarwin; };
|
|
imports = [
|
|
./emacs.nix
|
|
./git.nix
|
|
./gpg.nix
|
|
./zsh.nix
|
|
];
|
|
}
|