refactor: moved user-specific nix modules into the users/modules directory
This commit is contained in:
parent
169a8785ee
commit
abfacba0aa
8 changed files with 11 additions and 9 deletions
|
@ -1,14 +1,16 @@
|
||||||
{ self, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
{
|
||||||
|
self,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
../modules/home-git.nix # git specific configs
|
./modules/git.nix # git specific configs
|
||||||
../modules/home-tmux.nix # tmux specific configs (might move this)
|
./modules/tmux.nix # tmux specific configs (might move this)
|
||||||
../modules/home-sh.nix # bash and other shell specific configs
|
./modules/sh.nix # bash and other shell specific configs
|
||||||
../modules/home-wm.nix # window manager configs
|
./modules/wm.nix # window manager configs
|
||||||
../modules/home-editor.nix # editor specific configs
|
./modules/editor.nix # editor specific configs
|
||||||
../modules/home-terminal.nix # terminal emulator configs
|
./modules/terminal.nix # terminal emulator configs
|
||||||
../modules/home-utils.nix # miscellaneous utilities
|
./modules/utils.nix # miscellaneous utilities
|
||||||
];
|
];
|
||||||
|
|
||||||
# This enables using home-manager from the command line.
|
# This enables using home-manager from the command line.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue