Use private from gitea

This commit is contained in:
Artemis Tosini 2023-10-30 18:32:31 +00:00
parent 8027f6d8fe
commit a5157c6061
Signed by: artemist
GPG key ID: EE5227935FE3FF18
3 changed files with 19 additions and 19 deletions

View file

@ -201,11 +201,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1698250431, "lastModified": 1698670511,
"narHash": "sha256-qs2gTeH4wpnWPO6Oi6sOhp2IhG0i0DzcnrJxIY3/CP8=", "narHash": "sha256-jQIu3UhBMPHXzVkHQO1O2gg8SVo5lqAVoC6mOaLQcLQ=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "09587fbbc6a669f7725613e044c2577dc5d43ab5", "rev": "8e5416b478e465985eec274bc3a018024435c106",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -250,11 +250,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1697946153, "lastModified": 1698550809,
"narHash": "sha256-7k7qIwWLaYPgQ4fxmEdew3yCffhK6rM4I4Jo3X/79DA=", "narHash": "sha256-Um8+Wi6EAH5dCgfgl7OqaVd4wFJn6FKLafcP5QPr/98=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nix-index-database", "repo": "nix-index-database",
"rev": "5a2006282caaf32663cdcd582c5b18809c7d7d8d", "rev": "1f0981f5baeb78e3c89a8980ff1a39f06876fa8c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -280,11 +280,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1698134075, "lastModified": 1698318101,
"narHash": "sha256-foCD+nuKzfh49bIoiCBur4+Fx1nozo+4C/6k8BYk4sg=", "narHash": "sha256-gUihHt3yPD7bVqg+k/UVHgngyaJ3DMEBchbymBMvK1E=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "8efd5d1e283604f75a808a20e6cde0ef313d07d4", "rev": "63678e9f3d3afecfeafa0acead6239cdb447574c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -338,11 +338,11 @@
"pre-commit-hooks": "pre-commit-hooks" "pre-commit-hooks": "pre-commit-hooks"
}, },
"locked": { "locked": {
"lastModified": 1698386104, "lastModified": 1698504351,
"narHash": "sha256-/QwUn8G1ERjl82RFFTTI/2ulOTV9Mbeog97old9tZl0=", "narHash": "sha256-/bj7Sy32j2HPtIuwjV94ZqF3A8A3CIouOngz8pdMn2I=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nixvim", "repo": "nixvim",
"rev": "315bc508ee0bfb62b6608f8f445126158ca2cc35", "rev": "9004ffe32f68bb9cc3e5907bdb55ceccddca44a0",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -436,18 +436,18 @@
}, },
"private": { "private": {
"locked": { "locked": {
"lastModified": 1696997284, "lastModified": 1698690458,
"narHash": "sha256-4Gh4M1kKThixZNc8Nm0oxm+tqkpaqM+lslr0UT2SS0o=", "narHash": "sha256-4Gh4M1kKThixZNc8Nm0oxm+tqkpaqM+lslr0UT2SS0o=",
"ref": "unified", "ref": "unified",
"rev": "2dd16f02cfdba921cef8655879a0d59af2a89604", "rev": "d3013be9e32a3b38dbe1794b66a29866f38924fb",
"revCount": 33, "revCount": 35,
"type": "git", "type": "git",
"url": "ssh://git@github.com/artemist/nixos-config-private" "url": "ssh://gitea@git.mildlyfunctional.gay/artemist/nixos-config-private"
}, },
"original": { "original": {
"ref": "unified", "ref": "unified",
"type": "git", "type": "git",
"url": "ssh://git@github.com/artemist/nixos-config-private" "url": "ssh://gitea@git.mildlyfunctional.gay/artemist/nixos-config-private"
} }
}, },
"root": { "root": {

View file

@ -32,7 +32,7 @@
inputs.utils.follows = "utils"; inputs.utils.follows = "utils";
}; };
private.url = private.url =
"git+ssh://git@github.com/artemist/nixos-config-private?ref=unified"; "git+ssh://gitea@git.mildlyfunctional.gay/artemist/nixos-config-private?ref=unified";
wip-pinebook-pro = { wip-pinebook-pro = {
url = "github:samueldr/wip-pinebook-pro"; url = "github:samueldr/wip-pinebook-pro";
flake = false; flake = false;

View file

@ -12,5 +12,5 @@
}; };
hardware.pulseaudio.enable = lib.mkForce false; hardware.pulseaudio.enable = lib.mkForce false;
security.rtkit.enable = true; security.rtkit.enable = true;
environment.systemPackages = with pkgs; [ pulseaudio qpwgraph ]; environment.systemPackages = with pkgs; [ pulseaudio qpwgraph easyeffects ];
} }