mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
feat: import variables.nix globally
This commit is contained in:
parent
8339d9cd79
commit
e220e6904d
2 changed files with 4 additions and 2 deletions
|
|
@ -1,7 +1,8 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[(import ./docker.nix)]
|
[(import ./../../variables.nix)] # Does not really fit here but I have no clue where else
|
||||||
|
++ [(import ./docker.nix)]
|
||||||
++ [(import ./hardware.nix)]
|
++ [(import ./hardware.nix)]
|
||||||
++ [(import ./displaylink.nix)]
|
++ [(import ./displaylink.nix)]
|
||||||
# ++ [(import ./printing.nix)]
|
# ++ [(import ./printing.nix)]
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[(import ./hardware.nix)]
|
[(import ./../../variables.nix)]
|
||||||
|
++ [(import ./hardware.nix)]
|
||||||
++ [(import ./network.nix)]
|
++ [(import ./network.nix)]
|
||||||
++ [(import ./program.nix)]
|
++ [(import ./program.nix)]
|
||||||
++ [(import ./sshd.nix)]
|
++ [(import ./sshd.nix)]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue