move home configs under /nix/home

This commit is contained in:
John Bowdre 2023-07-26 16:55:10 -05:00
parent f444ee8081
commit f853ed8e8f
6 changed files with 6 additions and 6 deletions

View file

@ -47,7 +47,7 @@
pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; };
modules = [
./nix/machines/penguin-fw/home.nix
./nix/home/penguin-fw.nix
{
home = {
username = "john";

View file

@ -1,6 +1,6 @@
{ pkgs, lib, config, ... }: {
imports = [
../../common/home.nix
./home/common.nix
];
nixpkgs.config = {

View file

@ -1,7 +1,7 @@
{ pkgs, lib, config, ... }: {
imports = [
../../common/home.nix
../../lib/vscode.nix
./common.nix
../lib/vscode.nix
];
nixpkgs.config = {

View file

@ -1,4 +1,4 @@
{ pkgs, lib, ...}: {
{ pkgs, lib, ... }: {
programs.tmux = {
enable = true;
baseIndex = 1;

View file

@ -1,4 +1,4 @@
{ pkgs, lib, config, ...}: {
{ pkgs, lib, ... }: {
nixpkgs.config = {
allowUnfree = true;