idk
This commit is contained in:
parent
1d97959a14
commit
8b2e1e2029
8 changed files with 24 additions and 9 deletions
|
|
@ -1,16 +1,19 @@
|
|||
{ libs, pkgs, ... }:
|
||||
{ libs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./programs.nix
|
||||
./services.nix
|
||||
./networking.nix
|
||||
./default.nix
|
||||
|
||||
(libs.root "/modules/features/system/docker.nix")
|
||||
(libs.root "/modules/features/system/packages.nix")
|
||||
(libs.root "/modules/features/system/nix-dl.nix")
|
||||
|
||||
(libs.root "/home/asakiyuki/configuration.nix")
|
||||
(libs.root "/home/junko/configuration.nix")
|
||||
|
||||
(libs.root "/options/system/default.nix")
|
||||
(libs.root "/overlays/nixpkgs.nix")
|
||||
];
|
||||
}
|
||||
|
|
|
|||
11
host/server/device.nix
Normal file
11
host/server/device.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{ ... }:
|
||||
{
|
||||
device = {
|
||||
flake-name = "home-server";
|
||||
|
||||
programs = {
|
||||
fastfetch.enable = true;
|
||||
starship.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -1,6 +1,11 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs = {
|
||||
|
||||
ffmpeg.enable = true;
|
||||
nodejs.enable = true;
|
||||
bun.enable = true;
|
||||
ntfs3g.enable = true;
|
||||
python.enable = true;
|
||||
jdk.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue