2023-09-02 15:44:33 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
let
|
|
|
|
# Import Home Manager with niv.
|
|
|
|
home-manager = (import ../../nix/sources.nix).home-manager;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
(import "${home-manager}/nixos")
|
|
|
|
../../modules/base.home.nix
|
2023-09-06 19:29:51 +02:00
|
|
|
../../modules/gnome-config.home.nix
|
2023-09-05 16:20:15 +02:00
|
|
|
../../modules/gnome-extensions.home.nix
|
2023-09-06 19:29:51 +02:00
|
|
|
../../modules/gnome-fractional-scaling.home.nix
|
2023-09-02 15:44:33 +02:00
|
|
|
../../modules/git.home.nix
|
|
|
|
../../modules/zsh.home.nix
|
2023-09-06 14:43:08 +02:00
|
|
|
../../modules/nitrokey-ssh-gpg.home.nix
|
2023-09-06 16:01:39 +02:00
|
|
|
../../modules/thunderbird.home.nix
|
2023-09-02 15:44:33 +02:00
|
|
|
];
|
|
|
|
}
|