mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-26 02:03:21 +01:00
Make srb2 a module
This makes it easier to add and remove srb2 from machines by simply importing its module.
This commit is contained in:
parent
4f18602527
commit
d5db1b513e
@ -11,6 +11,7 @@
|
||||
./modules/dual-function-keys.nix
|
||||
./modules/tlp.nix
|
||||
./modules/osu
|
||||
./modules/srb2
|
||||
];
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
|
7
modules/srb2/default.nix
Normal file
7
modules/srb2/default.nix
Normal file
@ -0,0 +1,7 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
(pkgs.callPackage ./package {})
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue
Block a user