mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
rename modules folder to imports
This commit is contained in:
parent
ad16fd69f5
commit
ad704d807c
21 changed files with 12 additions and 12 deletions
|
|
@ -5,7 +5,7 @@
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = let
|
imports = let
|
||||||
modules = [
|
files = [
|
||||||
"boot"
|
"boot"
|
||||||
"dwm"
|
"dwm"
|
||||||
"fonts"
|
"fonts"
|
||||||
|
|
@ -22,9 +22,9 @@
|
||||||
#"mining"
|
#"mining"
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
lib.lists.forEach modules (
|
lib.lists.forEach files (
|
||||||
m:
|
f:
|
||||||
../modules + ("/" + m + ".nix")
|
../imports + ("/" + f + ".nix")
|
||||||
);
|
);
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
webcord # talk to people (gross)
|
webcord # talk to people (gross)
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = let
|
imports = let
|
||||||
modules = [
|
files = [
|
||||||
"boot"
|
"boot"
|
||||||
"fonts"
|
"fonts"
|
||||||
"git"
|
"git"
|
||||||
|
|
@ -17,9 +17,9 @@
|
||||||
"theme"
|
"theme"
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
lib.lists.forEach modules (
|
lib.lists.forEach files (
|
||||||
m:
|
f:
|
||||||
../modules + ("/" + m + ".nix")
|
../imports + ("/" + f + ".nix")
|
||||||
);
|
);
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
webcord
|
webcord
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = let
|
imports = let
|
||||||
modules = [
|
files = [
|
||||||
"boot"
|
"boot"
|
||||||
"fonts"
|
"fonts"
|
||||||
"git"
|
"git"
|
||||||
|
|
@ -15,9 +15,9 @@
|
||||||
"theme"
|
"theme"
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
lib.lists.forEach modules (
|
lib.lists.forEach files (
|
||||||
m:
|
f:
|
||||||
../modules + ("/" + m + ".nix")
|
../imports + ("/" + f + ".nix")
|
||||||
);
|
);
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
gimp
|
gimp
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue