Added nixos config for battlestation

This commit is contained in:
2024-11-09 18:13:57 +01:00
parent 066b45427a
commit 88a4f25fa5
5 changed files with 308 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{ config
, lib
, pkgs
, ...
}:
let
inherit (lib.my-namespace) enabled;
in
{
imports = [
# ../modules.nix
];
my-namespace.home = {
stream-tools = enabled;
# networking = enabled;
# personal-apps = enabled;
# suites.laptop = enabled;
};
home = {
packages = [
pkgs.nil
];
};
}