mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-03-14 14:10:24 -04: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 = {
|
home = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
unstable.prisma
|
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 = {
|
specialArgs = {
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
unstable = nixpkgs;
|
stable = import nix-stable {
|
||||||
stable = nix-stable;
|
inherit system;
|
||||||
|
config = { allowUnfree = true; };
|
||||||
|
};
|
||||||
};
|
};
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [
|
modules = [
|
||||||
|
@ -92,7 +94,7 @@
|
||||||
{ programs.nix-index-database.comma.enable = true; }
|
{ 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";
|
system = "aarch64-linux";
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inputs = inputs // {
|
inputs = inputs // {
|
||||||
|
@ -100,8 +102,10 @@
|
||||||
home-manager = inputs.home-manager-stable;
|
home-manager = inputs.home-manager-stable;
|
||||||
stylix = inputs.stylix-stable;
|
stylix = inputs.stylix-stable;
|
||||||
};
|
};
|
||||||
unstable = nixpkgs;
|
unstable = import nixpkgs {
|
||||||
stable = nix-stable;
|
inherit system;
|
||||||
|
config = { allowUnfree = true; };
|
||||||
|
};
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./boxes/wsl/configuration.nix
|
./boxes/wsl/configuration.nix
|
||||||
|
|
Loading…
Add table
Reference in a new issue