Update flake

This commit is contained in:
thiloho
2023-09-07 17:21:34 +02:00
parent 7c47dcd303
commit dc1627fe5e
3 changed files with 96 additions and 9 deletions

93
flake.lock generated
View File

@@ -18,6 +18,58 @@
"type": "github" "type": "github"
} }
}, },
"cachix": {
"locked": {
"lastModified": 1635350005,
"narHash": "sha256-tAMJnUwfaDEB2aa31jGcu7R7bzGELM9noc91L2PbVjg=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "1c1f5649bb9c1b0d98637c8c365228f57126f361",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-20.09",
"repo": "nixpkgs",
"type": "github"
}
},
"firefox": {
"inputs": {
"cachix": "cachix",
"flake-compat": "flake-compat",
"mozilla": "mozilla",
"nixpkgs": "nixpkgs_2"
},
"locked": {
"lastModified": 1693917765,
"narHash": "sha256-LtNhYwnIrp9UuSxv3AnYdOwGqypTYkW+20bdzCfzMdI=",
"owner": "colemickens",
"repo": "flake-firefox-nightly",
"rev": "131d2f932ced539afdb2390d6245f5c62d31e26d",
"type": "github"
},
"original": {
"owner": "colemickens",
"repo": "flake-firefox-nightly",
"type": "github"
}
},
"flake-compat": {
"locked": {
"lastModified": 1688025799,
"narHash": "sha256-ktpB4dRtnksm9F5WawoIkEneh1nrEvuxb5lJFt1iOyw=",
"owner": "nix-community",
"repo": "flake-compat",
"rev": "8bf105319d44f6b9f0d764efa4fdef9f1cc9ba1c",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "flake-compat",
"type": "github"
}
},
"home-manager": { "home-manager": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@@ -38,6 +90,22 @@
"type": "github" "type": "github"
} }
}, },
"mozilla": {
"flake": false,
"locked": {
"lastModified": 1690536331,
"narHash": "sha256-aRIf2FB2GTdfF7gl13WyETmiV/J7EhBGkSWXfZvlxcA=",
"owner": "mozilla",
"repo": "nixpkgs-mozilla",
"rev": "db89c8707edcffefcd8e738459d511543a339ff5",
"type": "github"
},
"original": {
"owner": "mozilla",
"repo": "nixpkgs-mozilla",
"type": "github"
}
},
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1684787197, "lastModified": 1684787197,
@@ -69,22 +137,39 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_3": {
"locked": {
"lastModified": 1693663421,
"narHash": "sha256-ImMIlWE/idjcZAfxKK8sQA7A1Gi/O58u5/CJA+mxvl8=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "e56990880811a451abd32515698c712788be5720",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": { "root": {
"inputs": { "inputs": {
"aurora-blog-template": "aurora-blog-template", "aurora-blog-template": "aurora-blog-template",
"firefox": "firefox",
"home-manager": "home-manager", "home-manager": "home-manager",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs_3",
"website": "website" "website": "website"
} }
}, },
"website": { "website": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1692298405, "lastModified": 1693764772,
"narHash": "sha256-LhBchuvoeRMnWxJaP0T03FhzODPzBOK92w/KwcZtSYc=", "narHash": "sha256-lTRGYpgNXPsPn28FxI0hnOQLpnZlrGmxxw/NDra9dQs=",
"owner": "thiloho", "owner": "thiloho",
"repo": "website", "repo": "website",
"rev": "25346de32ae7a4c740e67acba2c99d46d004ed18", "rev": "19a36679d16edbce818e8c1160f50e84824c9df2",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -12,6 +12,7 @@
flake = false; flake = false;
}; };
aurora-blog-template.url = "github:thiloho/aurora"; aurora-blog-template.url = "github:thiloho/aurora";
firefox.url = "github:colemickens/flake-firefox-nightly";
}; };
outputs = inputs@{ nixpkgs, home-manager, ... }: { outputs = inputs@{ nixpkgs, home-manager, ... }: {

View File

@@ -1,4 +1,4 @@
{ ... }: { inputs, ... }:
{ {
services = { services = {
@@ -31,10 +31,10 @@
home-manager.users.thiloho = { pkgs, lib, config, ... }: { home-manager.users.thiloho = { pkgs, lib, config, ... }: {
programs = { programs = {
firefox = { # firefox = {
enable = true; # enable = true;
package = pkgs.firefox-devedition; # package = pkgs.firefox-devedition;
}; # };
chromium = { chromium = {
enable = true; enable = true;
extensions = [ extensions = [
@@ -85,6 +85,7 @@
teamspeak5_client teamspeak5_client
discord discord
qbittorrent qbittorrent
inputs.firefox.packages.${pkgs.system}.firefox-nightly-bin
]; ];
}; };
}; };