nix: start keyring as service to fix issues, add packages
This commit is contained in:
@ -2,9 +2,10 @@
|
||||
inputs.nixpkgs.url = "nixpkgs/nixos-22.11";
|
||||
inputs.nixpkgs-unstable.url = "nixpkgs/nixos-unstable";
|
||||
|
||||
inputs.nix-matlab.url = "gitlab:doronbehar/nix-matlab";
|
||||
# inputs.home-manager.url = "github:nix-community/home-manager";
|
||||
|
||||
outputs = { self, nixpkgs, nixpkgs-unstable, ... }@attrs:
|
||||
outputs = { self, nixpkgs, nixpkgs-unstable, nix-matlab, ... }@attrs:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
overlay-unstable = final: prev: {
|
||||
@ -21,7 +22,9 @@
|
||||
specialArgs = attrs;
|
||||
modules = [
|
||||
# Overlays-module makes "pkgs.unstable" available in configuration.nix
|
||||
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
|
||||
({ config, pkgs, ... }: {
|
||||
nixpkgs.overlays = [ overlay-unstable nix-matlab.overlay ];
|
||||
})
|
||||
./configuration.nix
|
||||
];
|
||||
};
|
||||
|
Reference in New Issue
Block a user