mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-18 11:13:30 -05:00
d
This commit is contained in:
parent
154444180c
commit
9e725e02b6
2 changed files with 11 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
|||
{pkgs, unstable, ...}: {
|
||||
{pkgs, unstable ? pkgs, ...}: {
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
unstable.prisma
|
||||
|
|
16
flake.nix
16
flake.nix
|
@ -78,11 +78,13 @@
|
|||
)
|
||||
];
|
||||
};
|
||||
nix-desktop-evo4b5 = nixpkgs.lib.nixosSystem {
|
||||
nix-desktop-evo4b5 = nixpkgs.lib.nixosSystem rec {
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
unstable = nixpkgs;
|
||||
stable = nix-stable;
|
||||
stable = import nix-stable {
|
||||
inherit system;
|
||||
config = { allowUnfree = true; };
|
||||
};
|
||||
};
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
|
@ -92,7 +94,7 @@
|
|||
{ programs.nix-index-database.comma.enable = true; }
|
||||
];
|
||||
};
|
||||
arm-laptop-evo4b5 = nix-stable.lib.nixosSystem {
|
||||
arm-laptop-evo4b5 = nix-stable.lib.nixosSystem rec {
|
||||
system = "aarch64-linux";
|
||||
specialArgs = {
|
||||
inputs = inputs // {
|
||||
|
@ -100,8 +102,10 @@
|
|||
home-manager = inputs.home-manager-stable;
|
||||
stylix = inputs.stylix-stable;
|
||||
};
|
||||
unstable = nixpkgs;
|
||||
stable = nix-stable;
|
||||
unstable = import nixpkgs {
|
||||
inherit system;
|
||||
config = { allowUnfree = true; };
|
||||
};
|
||||
};
|
||||
modules = [
|
||||
./boxes/wsl/configuration.nix
|
||||
|
|
Loading…
Reference in a new issue