mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-21 17:02:18 +00:00
move home configs under /nix/home
This commit is contained in:
parent
f444ee8081
commit
f853ed8e8f
6 changed files with 6 additions and 6 deletions
|
@ -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";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ pkgs, lib, config, ... }: {
|
||||
imports = [
|
||||
../../common/home.nix
|
||||
./home/common.nix
|
||||
];
|
||||
|
||||
nixpkgs.config = {
|
|
@ -1,7 +1,7 @@
|
|||
{ pkgs, lib, config, ... }: {
|
||||
imports = [
|
||||
../../common/home.nix
|
||||
../../lib/vscode.nix
|
||||
./common.nix
|
||||
../lib/vscode.nix
|
||||
];
|
||||
|
||||
nixpkgs.config = {
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, lib, ...}: {
|
||||
{ pkgs, lib, ... }: {
|
||||
programs.tmux = {
|
||||
enable = true;
|
||||
baseIndex = 1;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, lib, config, ...}: {
|
||||
{ pkgs, lib, ... }: {
|
||||
|
||||
nixpkgs.config = {
|
||||
allowUnfree = true;
|
||||
|
|
Loading…
Reference in a new issue