11 lines
195 B
Nix
11 lines
195 B
Nix
{ self, ... }: {
|
|
flake.modules.nixos.naps2 = { pkgs, ... }: {
|
|
imports = with self.modules.nixos; [
|
|
sane
|
|
];
|
|
environment.systemPackages = with pkgs; [
|
|
naps2
|
|
];
|
|
};
|
|
}
|