julia2nix

This commit is contained in:
Rachel Lambda Samuelsson 2023-09-12 21:28:31 +02:00
parent c481b0e9ba
commit 6cc6bd37cc
3 changed files with 50 additions and 6 deletions

View File

@ -1,5 +1,20 @@
{ {
"nodes": { "nodes": {
"flake-utils": {
"locked": {
"lastModified": 1667395993,
"narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"home-manager": { "home-manager": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@ -21,6 +36,28 @@
"type": "github" "type": "github"
} }
}, },
"julia2nix": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1669700922,
"narHash": "sha256-CSco+BtoWn/O7IJepELzIepmmpXxoR225TVCjMRQzew=",
"owner": "codedownio",
"repo": "julia2nix",
"rev": "3d326d4e3fa6aa026f4e7568327b3fa007ab8cb6",
"type": "github"
},
"original": {
"owner": "codedownio",
"ref": "v1.0.0",
"repo": "julia2nix",
"type": "github"
}
},
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1693428224, "lastModified": 1693428224,
@ -40,6 +77,7 @@
"root": { "root": {
"inputs": { "inputs": {
"home-manager": "home-manager", "home-manager": "home-manager",
"julia2nix": "julia2nix",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
} }
} }

View File

@ -6,9 +6,11 @@
nixpkgs.url = "github:NixOs/nixpkgs/nixos-23.05"; nixpkgs.url = "github:NixOs/nixpkgs/nixos-23.05";
home-manager.url = "github:nix-community/home-manager/release-23.05"; home-manager.url = "github:nix-community/home-manager/release-23.05";
home-manager.inputs.nixpkgs.follows = "nixpkgs"; home-manager.inputs.nixpkgs.follows = "nixpkgs";
julia2nix.url = "github:codedownio/julia2nix/v1.0.0";
julia2nix.inputs.nixpkgs.follows = "nixpkgs";
}; };
outputs = { self, nixpkgs, home-manager }: { outputs = { self, nixpkgs, home-manager, julia2nix }: {
nixosConfigurations.lambda = nixpkgs.lib.nixosSystem { nixosConfigurations.lambda = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
@ -19,13 +21,16 @@
} }
./lambda/configuration.nix ./lambda/configuration.nix
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
{ ({ pkgs, ...}: {
home-manager = { home-manager = {
useGlobalPkgs = true; useGlobalPkgs = true;
useUserPackages = true; useUserPackages = true;
users.rachel = import ./home/rachel.nix; users.rachel = import ./home/rachel.nix {
inherit pkgs;
julia2nix = julia2nix.packages."x86_64-linux".default;
} ; } ;
} };
})
]; ];
}; };

View File

@ -1,4 +1,4 @@
{ pkgs, ... }: { pkgs, julia2nix, ... }:
let username = "rachel"; let username = "rachel";
homeDir = "/home/${username}"; homeDir = "/home/${username}";
SAX2 = pkgs.fetchurl { SAX2 = pkgs.fetchurl {
@ -34,7 +34,8 @@ in
nmap nmap
arp-scan arp-scan
acpi acpi
julia julia-bin
julia2nix
python3 python3
ghc ghc
firefox firefox