idk
This commit is contained in:
parent
1d97959a14
commit
8b2e1e2029
8 changed files with 24 additions and 9 deletions
|
|
@ -10,10 +10,6 @@
|
||||||
"flakes"
|
"flakes"
|
||||||
];
|
];
|
||||||
|
|
||||||
device = {
|
|
||||||
flake-name = "home-server";
|
|
||||||
};
|
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
|
|
|
||||||
|
|
@ -26,9 +26,9 @@ in
|
||||||
;
|
;
|
||||||
};
|
};
|
||||||
imports = [
|
imports = [
|
||||||
./modules/programs.nix
|
./programs.nix
|
||||||
./modules/files.nix
|
./files.nix
|
||||||
./modules/env.nix
|
./env.nix
|
||||||
|
|
||||||
../../modules/features/home/theme.nix
|
../../modules/features/home/theme.nix
|
||||||
../../options/home/default.nix
|
../../options/home/default.nix
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,19 @@
|
||||||
{ libs, pkgs, ... }:
|
{ libs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./programs.nix
|
./programs.nix
|
||||||
./services.nix
|
./services.nix
|
||||||
./networking.nix
|
./networking.nix
|
||||||
|
./default.nix
|
||||||
|
|
||||||
(libs.root "/modules/features/system/docker.nix")
|
(libs.root "/modules/features/system/docker.nix")
|
||||||
(libs.root "/modules/features/system/packages.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/asakiyuki/configuration.nix")
|
||||||
(libs.root "/home/junko/configuration.nix")
|
(libs.root "/home/junko/configuration.nix")
|
||||||
|
|
||||||
(libs.root "/options/system/default.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 = {
|
programs = {
|
||||||
|
ffmpeg.enable = true;
|
||||||
|
nodejs.enable = true;
|
||||||
|
bun.enable = true;
|
||||||
|
ntfs3g.enable = true;
|
||||||
|
python.enable = true;
|
||||||
|
jdk.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Reference in a new issue