Compare commits

..

No commits in common. "717bfbeb1dcc4468b41273bca2d687427a9fdfa7" and "b9a711d510c80a35fd58a6b7b1c18259688ce6f6" have entirely different histories.

5 changed files with 16 additions and 51 deletions

View File

@ -1,25 +1,5 @@
{
"nodes": {
"aaru": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1719657434,
"narHash": "sha256-hvqQ9k3E1eIsbu1HChnxzxDysNauKAUTTxN7EdePMsY=",
"owner": "Whovian9369",
"repo": "aaru-nix-flake",
"rev": "620ef8866395544b5aad55b7dac83fa63a988731",
"type": "github"
},
"original": {
"owner": "Whovian9369",
"repo": "aaru-nix-flake",
"type": "github"
}
},
"agenix": {
"inputs": {
"darwin": [],
@ -105,11 +85,11 @@
]
},
"locked": {
"lastModified": 1719588253,
"narHash": "sha256-A03i8xiVgP14DCmV5P7VUv37eodCjY4e1iai0b2EuuM=",
"lastModified": 1719180626,
"narHash": "sha256-vZAzm5KQpR6RGple1dzmSJw5kPivES2heCFM+ZWkt0I=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "7e68e55d2e16d3a1e92a679430728c35a30fd24e",
"rev": "6b1f90a8ff92e81638ae6eb48cd62349c3e387bb",
"type": "github"
},
"original": {
@ -121,11 +101,11 @@
"lix": {
"flake": false,
"locked": {
"lastModified": 1719439912,
"narHash": "sha256-Qn0y/WEYcBL/SKEnpJq1e9tDpVi57YGDiJM2MgavLXM=",
"lastModified": 1719261698,
"narHash": "sha256-0P9zg07Za+7B8bOgCYese2xU6dqutIyq7bT05wPl5HY=",
"ref": "refs/heads/main",
"rev": "5dc85e8b72d1ba433f69200537146275ff1c4a03",
"revCount": 15900,
"rev": "d5637ee790799ffa00bcaa3067bb6940b6cbad16",
"revCount": 15880,
"type": "git",
"url": "https://git@git.lix.systems/lix-project/lix"
},
@ -148,11 +128,11 @@
]
},
"locked": {
"lastModified": 1719353937,
"narHash": "sha256-86NBqDxAP20ET/UoKX0WvSItblNQ97czXb2q7lkMrwk=",
"lastModified": 1718778751,
"narHash": "sha256-DdcMvX9r29uHMlz7P1Shgs5xZw9WkZ4ObMGYzwROAiw=",
"ref": "refs/heads/main",
"rev": "5d9d94089fb1ca96222a34bfe245ef5c5ebefd37",
"revCount": 92,
"rev": "909e593ae9f5fe338ab19b4ed9d52bb0ea09bad8",
"revCount": 90,
"type": "git",
"url": "https://git.lix.systems/lix-project/nixos-module"
},
@ -223,11 +203,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1719506693,
"narHash": "sha256-C8e9S7RzshSdHB7L+v9I51af1gDM5unhJ2xO1ywxNH8=",
"lastModified": 1719075281,
"narHash": "sha256-CyyxvOwFf12I91PBWz43iGT1kjsf5oi6ax7CrvaMyAo=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b2852eb9365c6de48ffb0dc2c9562591f652242a",
"rev": "a71e967ef3694799d0c418c98332f7ff4cc5f6af",
"type": "github"
},
"original": {
@ -239,7 +219,6 @@
},
"root": {
"inputs": {
"aaru": "aaru",
"agenix": "agenix",
"flake-utils": "flake-utils",
"home-manager": "home-manager",

View File

@ -42,11 +42,6 @@
inputs.nixpkgs.follows = "nixpkgs";
};
aaru = {
url = "github:Whovian9369/aaru-nix-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
### Lix! Lix! Lix!
lix = {
@ -96,7 +91,7 @@
# Lix
lix-module,
# Added by me
agenix, home-manager, nix-index-database, xil, aaru, ... }:
agenix, home-manager, nix-index-database, xil, ... }:
let
pkgs = import nixpkgs {
system = "x86_64-linux";
@ -165,7 +160,6 @@
# to home.nix
extraSpecialArgs = {
system = "x86_64-linux";
inherit aaru;
inherit xil;
inherit nixpkgs;
pkgs = import nixpkgs {

View File

@ -1,6 +1,5 @@
{
lib,
aaru,
agenix,
config,
modulesPath,
@ -19,8 +18,7 @@
./dotfiles.nix # home.file
./variables.nix # home.sessionVariables
./aliases.nix # home.shellAliases
# ./rust.nix # Should be my `rustfmt` config.
# I no longer have an interest in Rust. :)
./rust.nix # Should be my `rustfmt` config.
];
home = {

View File

@ -1,5 +1,4 @@
{
aaru,
agenix,
pkgs,
system,
@ -140,7 +139,6 @@ in
agenix.packages.${system}.default
xil.packages.${system}.xil
aaru.packages.${system}.git
];
# Disabled Packages

View File

@ -12,8 +12,4 @@
ITCHIO_API_KEY = "\$(cat ${config.age.secrets."itchy".path})";
ELIXIRE_API_KEY = "\$(cat ${config.age.secrets."elixire".path})";
};
home.sessionPath = [
"$HOME/bin"
];
}