Compare commits

..

No commits in common. "1a8f6e48cb0bf9eee9de0d1f9b637c35dae3abc3" and "9b8b0799775c9691587c736fb7dc102df6684db8" have entirely different histories.

4 changed files with 25 additions and 12 deletions

View file

@ -309,10 +309,7 @@
"nix-on-droid", "nix-on-droid",
"nixpkgs" "nixpkgs"
], ],
"nmd": [ "nmd": "nmd",
"nix-on-droid",
"nmd"
],
"nmt": "nmt" "nmt": "nmt"
}, },
"locked": { "locked": {
@ -338,19 +335,19 @@
], ],
"nixpkgs-docs": "nixpkgs-docs", "nixpkgs-docs": "nixpkgs-docs",
"nixpkgs-for-bootstrap": "nixpkgs-for-bootstrap", "nixpkgs-for-bootstrap": "nixpkgs-for-bootstrap",
"nmd": "nmd" "nmd": "nmd_2"
}, },
"locked": { "locked": {
"lastModified": 1725658585, "lastModified": 1720396533,
"narHash": "sha256-P29z4Gt89n5ps1U7+qmIrj0BuRXGZQSIaOe2+tsPgfw=", "narHash": "sha256-UFzk/hZWO1VkciIO5UPaSpJN8s765wsngUSvtJM6d5Q=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nix-on-droid", "repo": "nix-on-droid",
"rev": "5d88ff2519e4952f8d22472b52c531bb5f1635fc", "rev": "f3d3b8294039f2f9a8fb7ea82c320f29c6b0fe25",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "master", "ref": "release-24.05",
"repo": "nix-on-droid", "repo": "nix-on-droid",
"type": "github" "type": "github"
} }
@ -436,6 +433,22 @@
} }
}, },
"nmd": { "nmd": {
"flake": false,
"locked": {
"lastModified": 1666190571,
"narHash": "sha256-Z1hc7M9X6L+H83o9vOprijpzhTfOBjd0KmUTnpHAVjA=",
"owner": "rycee",
"repo": "nmd",
"rev": "b75d312b4f33bd3294cd8ae5c2ca8c6da2afc169",
"type": "gitlab"
},
"original": {
"owner": "rycee",
"repo": "nmd",
"type": "gitlab"
}
},
"nmd_2": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
"nix-on-droid", "nix-on-droid",

View file

@ -3,7 +3,7 @@
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nix-on-droid = { nix-on-droid = {
url = "github:nix-community/nix-on-droid/master"; url = "github:nix-community/nix-on-droid/release-24.05";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };

View file

@ -53,7 +53,7 @@
time.timeZone = "Europe/Berlin"; time.timeZone = "Europe/Berlin";
home-manager.config = { home-manager = {
home.stateVersion = "24.05"; home.stateVersion = "24.05";
imports = [ imports = [

View file

@ -12,7 +12,7 @@
shellAliases = { shellAliases = {
v = "hx"; v = "hx";
ser = "ssh root@joygnu.org"; ser = "ssh root@joygnu.org";
rb = "nix-on-droid switch --flake ~/nix"; rb = "nix-on-droid switch --flake ~/.config/nix-on-droid";
ep = "hx ~/.config/nix-on-droid/nix-on-droid.nix"; ep = "hx ~/.config/nix-on-droid/nix-on-droid.nix";
}; };