24 lines
547 B
Nix
24 lines
547 B
Nix
{ config, pkgs, lib, ... }:
|
|
with lib.hm.gvariant;
|
|
{
|
|
config = {
|
|
home.stateVersion = "24.05";
|
|
};
|
|
|
|
|
|
|
|
imports = [
|
|
../../modules/home-manager/browser.nix
|
|
../../modules/home-manager/code.nix
|
|
|
|
../../modules/home-manager/dev.nix
|
|
../../modules/home-manager/fish.nix
|
|
|
|
../../modules/home-manager/kubectl.nix
|
|
../../modules/home-manager/macos-fixes.nix
|
|
../../modules/home-manager/nh.nix
|
|
../../modules/home-manager/obsidian.nix
|
|
../../modules/home-manager/work
|
|
];
|
|
}
|