consolidate home-manager config to a module with one entrypoint

This commit is contained in:
Katherina Walshe-Grey 2024-07-30 13:02:11 +01:00
parent 230e93bbe7
commit 31bf48154c
15 changed files with 59 additions and 68 deletions

View file

@ -3,7 +3,6 @@
{
imports = [
./hardware-configuration.nix
./home.nix
];
boot.loader.systemd-boot.enable = true;

View file

@ -1,14 +0,0 @@
{ config, lib, pkgs, ... }:
{
home-manager.users.qenya = { pkgs, ... }: {
imports = [
../../home/cli.nix
../../home/git.nix
../../home/tmux.nix
../../home/zsh.nix
];
home.stateVersion = "23.11";
};
}