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; pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = { inherit inputs outputs; }; extraSpecialArgs = { inherit inputs outputs; };
modules = [ modules = [
./nix/machines/penguin-fw/home.nix ./nix/home/penguin-fw.nix
{ {
home = { home = {
username = "john"; username = "john";

View file

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

View file

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

View file

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

View file

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