Update dependencies

This commit is contained in:
Charlotte Van Petegem 2021-04-15 02:36:57 +02:00
parent a71ce8b2ef
commit 1d446b58d1
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 25 additions and 23 deletions

18
flake.lock generated
View file

@ -38,11 +38,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1617822567, "lastModified": 1618436674,
"narHash": "sha256-hDnjcuxRtm/+x/pEAWkKo4AfjKMCil2zfoK/zBygjB4=", "narHash": "sha256-9y5Y7YK2W+kzXBrYkrw964xWbo2O4m5A91PohkyGkj8=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "7fcfd9b565a470ccd43cd826d650931d660777fe", "rev": "0a6227d667d1d2bc6a79de24fd12becc523f2e2f",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -53,11 +53,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1617784895, "lastModified": 1618388647,
"narHash": "sha256-gJOCUkf2Y1T8lFFjgw1zsNM+f0yQ1YEq3p31P8YUHHY=", "narHash": "sha256-qs2LLMWfFI51MiSyt4azliM6tdBgaIonRqD7Oq8Nxjk=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "de679c57ca579974f35fab5444c7892ceb16230a", "rev": "b3d70196ea1b4586414122ae1aadff5c37ef9611",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -80,11 +80,11 @@
"flake-utils": "flake-utils" "flake-utils": "flake-utils"
}, },
"locked": { "locked": {
"lastModified": 1616960210, "lastModified": 1618392274,
"narHash": "sha256-4cnmFczcV2Rsv8oWauUhoHQMZak4xS1CKnqf1a3s//I=", "narHash": "sha256-kX7Hpn/nl//eWDa1QzkiSdbskdeH+HwWFP0iIo7gYH8=",
"owner": "gytis-ivaskevicius", "owner": "gytis-ivaskevicius",
"repo": "flake-utils-plus", "repo": "flake-utils-plus",
"rev": "6d6f6137a818fabdc0e296395480851d8f36ffce", "rev": "0b101bd6b34ed4b44d6d0126d2508d68801f1ba3",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -18,7 +18,8 @@
patches = [ ]; patches = [ ];
}; };
sharedOverlays = [ emacs-overlay.overlay ]; sharedOverlays = [ emacs-overlay.overlay ];
sharedModules = [ hostDefaults = {
modules = [
({ lib, ... }: { ({ lib, ... }: {
environment.etc = lib.mapAttrs' (key: val: { name = "channels/${key}"; value = { source = val.outPath; }; }) inputs; environment.etc = lib.mapAttrs' (key: val: { name = "channels/${key}"; value = { source = val.outPath; }; }) inputs;
nix.nixPath = [ "/etc/channels" ]; nix.nixPath = [ "/etc/channels" ];
@ -27,11 +28,12 @@
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
./modules ./modules
]; ];
nixosProfiles = { };
kharbranth = { modules = [ ./machines/kharbranth ]; }; hosts = {
kholinar = { modules = [ ./machines/kholinar ]; }; kharbranth.modules = [ ./machines/kharbranth ];
lasting-integrity = { modules = [ ./machines/lasting-integrity ]; }; kholinar.modules = [ ./machines/kholinar ];
urithiru = { modules = [ ./machines/urithiru ]; }; lasting-integrity.modules = [ ./machines/lasting-integrity ];
urithiru.modules = [ ./machines/urithiru ];
}; };
devShellBuilder = channels: devShellBuilder = channels:
let pkgs = channels.nixpkgs; in pkgs.mkShell { buildInputs = [ pkgs.nixpkgs-fmt ]; }; let pkgs = channels.nixpkgs; in pkgs.mkShell { buildInputs = [ pkgs.nixpkgs-fmt ]; };