flake update

This commit is contained in:
Vivian 2022-12-06 21:56:38 +01:00
parent 8108eb26da
commit 9f5d01fcbd
3 changed files with 32 additions and 14 deletions

28
flake.lock generated
View file

@ -399,11 +399,11 @@
"xdph": "xdph" "xdph": "xdph"
}, },
"locked": { "locked": {
"lastModified": 1670331430, "lastModified": 1670358704,
"narHash": "sha256-UdXvsPJEu2ktOZwfGrVoR8gl9jHnE60CEZRvsEvNJBw=", "narHash": "sha256-zBClR9FjbV3So2xDoQci6aKjsnkFVtrD1Ipnd1dY1oo=",
"owner": "hyprwm", "owner": "hyprwm",
"repo": "Hyprland", "repo": "Hyprland",
"rev": "7ed401e5e0779e851667c2e5d220c24e9a5b8737", "rev": "993c382e74faddefeb62b3ab7a7281bd9a69990b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -711,11 +711,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1670152712, "lastModified": 1670242877,
"narHash": "sha256-LJttwIvJqsZIj8u1LxVRv82vwUtkzVqQVi7Wb8gxPS4=", "narHash": "sha256-jBLh7dRHnbfvPPA9znOC6oQfKrCPJ0El8Zoe0BqnCjQ=",
"owner": "NULLx76", "owner": "NULLx76",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "14ddeaebcbe9a25748221d1d7ecdf98e20e2325e", "rev": "6e51c97f1c849efdfd4f3b78a4870e6aa2da4198",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -794,6 +794,21 @@
"type": "gitlab" "type": "gitlab"
} }
}, },
"nur": {
"locked": {
"lastModified": 1670315682,
"narHash": "sha256-/v0RgZZIjvsFuJbJLUlzRbzSlYFXq3olgJTuJBNtcoY=",
"owner": "nix-community",
"repo": "NUR",
"rev": "af814db16c89385c65e758608296440555f61ccc",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "NUR",
"type": "github"
}
},
"poetry2nix": { "poetry2nix": {
"inputs": { "inputs": {
"flake-utils": [ "flake-utils": [
@ -900,6 +915,7 @@
"nixos-hardware": "nixos-hardware", "nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs_2",
"nixvim": "nixvim", "nixvim": "nixvim",
"nur": "nur",
"riff": "riff", "riff": "riff",
"vault-secrets": "vault-secrets", "vault-secrets": "vault-secrets",
"webcord": "webcord" "webcord": "webcord"

View file

@ -8,6 +8,9 @@
inputs = { inputs = {
nixpkgs.url = "github:NULLx76/nixpkgs/0x76"; nixpkgs.url = "github:NULLx76/nixpkgs/0x76";
nur.url = "github:nix-community/NUR";
nur.inputs.nixpkgs.follows = "nixpkgs";
colmena.url = "github:zhaofengli/colmena"; colmena.url = "github:zhaofengli/colmena";
colmena.inputs.nixpkgs.follows = "nixpkgs"; colmena.inputs.nixpkgs.follows = "nixpkgs";
@ -47,7 +50,8 @@
}; };
outputs = { self, nixpkgs, vault-secrets, minecraft-servers, colmena outputs = { self, nixpkgs, vault-secrets, minecraft-servers, colmena
, home-manager, hyprpaper, hyprland, nixos-generators, nixos-hardware, ... }@inputs: , home-manager, hyprpaper, hyprland, nixos-generators, nixos-hardware, nur
, ... }@inputs:
let let
inherit (nixpkgs) lib; inherit (nixpkgs) lib;
inherit (builtins) mapAttrs; inherit (builtins) mapAttrs;
@ -72,6 +76,7 @@
minecraft-servers.overlays.default minecraft-servers.overlays.default
hyprpaper.overlays.default hyprpaper.overlays.default
hyprland.overlays.default hyprland.overlays.default
nur.overlay
]; ];
}; };

View file

@ -69,13 +69,10 @@ in {
package = pkgs.vscode; package = pkgs.vscode;
userSettings = { userSettings = {
"ltex.language" = "en-GB"; "ltex.language" = "en-GB";
"latex-workshop" = { "latex-workshop.linting.chktex.enabled" = true;
"linting.chktex.enabled" = true; "latex-workshop.latex.clean.subfolder.enabled" = true;
"latex.clean.subfolder.enabled" = true; "latex-workshop.latex.outDir" = "%TMPDIR%/%RELATIVE_DOC%";
"latex.outDir" = "%TMPDIR%/%RELATIVE_DOC%"; "editor.fontFamily" = "'DejaVuSansMono Nerd Font', 'monospace', monospace";
};
"editor.fontFamily" =
"'DejaVuSansMono Nerd Font', 'monospace', monospace";
"keyboard.dispatch" = "keyCode"; "keyboard.dispatch" = "keyCode";
"rust-analyzer.server.path" = "${pkgs.rust-analyzer}/bin/rust-analyzer"; "rust-analyzer.server.path" = "${pkgs.rust-analyzer}/bin/rust-analyzer";
"terminal.integrated.defaultProfile.linux" = "zsh"; "terminal.integrated.defaultProfile.linux" = "zsh";