mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-18 18:27:00 -04:00
refactor custom packages to be a module
This commit is contained in:
parent
c73e0afd18
commit
aa209a91b9
5 changed files with 71 additions and 54 deletions
25
flake.nix
25
flake.nix
|
@ -1,4 +1,3 @@
|
|||
#commit
|
||||
{
|
||||
description = "Nixos config flake";
|
||||
|
||||
|
@ -34,14 +33,17 @@
|
|||
url = "github:danth/stylix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
chrome-pak = {
|
||||
url = "git+file:./customPackages/chrome-pak-customizer";
|
||||
flake = false;
|
||||
};
|
||||
};
|
||||
outputs =
|
||||
{
|
||||
self,
|
||||
nixpkgs,
|
||||
nixos-wsl,
|
||||
nix-stable,
|
||||
...
|
||||
{ self
|
||||
, nixpkgs
|
||||
, nixos-wsl
|
||||
, nix-stable
|
||||
, ...
|
||||
}@inputs:
|
||||
# let
|
||||
# boxes = [
|
||||
|
@ -55,11 +57,10 @@
|
|||
system = "aarch64-linux";
|
||||
modules = [
|
||||
(
|
||||
{
|
||||
pkgs,
|
||||
modulesPath,
|
||||
lib,
|
||||
...
|
||||
{ pkgs
|
||||
, modulesPath
|
||||
, lib
|
||||
, ...
|
||||
}:
|
||||
{
|
||||
imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix") ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue