forked from M-Labs/defenestrate
use nixos 23.05 base system
Older ones don't work on new NUCs.
This commit is contained in:
parent
e0f844feb8
commit
f4f75834a9
|
@ -47,7 +47,7 @@
|
||||||
imagemagick
|
imagemagick
|
||||||
firefox
|
firefox
|
||||||
chromium
|
chromium
|
||||||
(python3.withPackages(ps: with ps; [
|
(artiq.inputs.nixpkgs.legacyPackages.x86_64-linux.python3.withPackages(ps: with ps; [
|
||||||
numpy
|
numpy
|
||||||
scipy
|
scipy
|
||||||
matplotlib
|
matplotlib
|
||||||
|
@ -76,7 +76,7 @@
|
||||||
hardware.opengl.driSupport = true;
|
hardware.opengl.driSupport = true;
|
||||||
|
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
services.openssh.passwordAuthentication = false;
|
services.openssh.settings.PasswordAuthentication = false;
|
||||||
|
|
||||||
sound.enable = true;
|
sound.enable = true;
|
||||||
hardware.pulseaudio.enable = true;
|
hardware.pulseaudio.enable = true;
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
{
|
{
|
||||||
|
inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-23.05;
|
||||||
inputs.artiq.url = git+https://github.com/m-labs/artiq.git?ref=release-7;
|
inputs.artiq.url = git+https://github.com/m-labs/artiq.git?ref=release-7;
|
||||||
outputs = { self, artiq }: {
|
outputs = { self, nixpkgs, artiq }: {
|
||||||
nixosConfigurations.artiq = artiq.inputs.nixpkgs.lib.nixosSystem {
|
nixosConfigurations.artiq = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
specialArgs = { inherit artiq; };
|
specialArgs = { inherit artiq; };
|
||||||
modules = [ ./configuration.nix ];
|
modules = [ ./configuration.nix ];
|
||||||
|
|
Loading…
Reference in New Issue