refactor and modularize base.nix futher; use default.nix when possible

This commit is contained in:
2025-09-26 11:49:00 +01:00
parent db9826339f
commit 6a45fca8d5
15 changed files with 152 additions and 126 deletions

View File

@@ -0,0 +1,9 @@
{ ... }:
{
imports = [
./fonts.nix
./mpv.nix
./terminal.nix
];
}

View File

@@ -2,10 +2,8 @@
{
imports = [
./base/fonts.nix
./base/terminal.nix
./base/mpv.nix
./firefox/firefox.nix
./base
./firefox
];
home.packages = with pkgs;[

View File

@@ -2,10 +2,10 @@
{
imports = [
./vscode.nix
./helix.nix
./dotnet.nix
./sql.nix
./games.nix
./helix.nix
./sql.nix
./vscode.nix
];
}