random additions and whatever

This commit is contained in:
yaroslav
2025-06-13 01:34:07 +03:00
parent 69bd0b8534
commit e737584aea
4 changed files with 28 additions and 23 deletions
Generated
+15 -15
View File
@@ -45,11 +45,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1749243446, "lastModified": 1749657191,
"narHash": "sha256-P1gumhZN5N9q+39ndePHYrtwOwY1cGx+VoXGl+vTm7A=", "narHash": "sha256-QLilaHuhGxiwhgceDWESj9gFcKIdEp7+9lRqNGpN8S4=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "2d7d65f65b61fdfce23278e59ca266ddd0ef0a36", "rev": "faeab32528a9360e9577ff4082de2d35c6bbe1ce",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -92,11 +92,11 @@
}, },
"nixpkgs-stable": { "nixpkgs-stable": {
"locked": { "locked": {
"lastModified": 1749494155, "lastModified": 1749727998,
"narHash": "sha256-FG4DEYBpROupu758beabUk9lhrblSf5hnv84v1TLqMc=", "narHash": "sha256-mHv/yeUbmL91/TvV95p+mBVahm9mdQMJoqaTVTALaFw=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "88331c17ba434359491e8d5889cce872464052c2", "rev": "fd487183437963a59ba763c0cc4f27e3447dd6dd",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -171,11 +171,11 @@
"ymExe": "ymExe" "ymExe": "ymExe"
}, },
"locked": { "locked": {
"lastModified": 1748739739, "lastModified": 1749257466,
"narHash": "sha256-utcv++Te4VEW4SkPVrUyxRjVnmWEj97dQsTWBzS2Ac0=", "narHash": "sha256-/ZZIL3DZY/L28fCq4CD9vVuvX7xJK2hsyDY6gymdUWo=",
"owner": "cucumber-sp", "owner": "cucumber-sp",
"repo": "yandex-music-linux", "repo": "yandex-music-linux",
"rev": "2efccc9e9671618c1f04a3f0c87f5b537a84cba5", "rev": "3fde8f8ed83aba4950d67b69e8fd6da3932b9cde",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -187,13 +187,13 @@
"ymExe": { "ymExe": {
"flake": false, "flake": false,
"locked": { "locked": {
"narHash": "sha256-xkBpCCSAsXDJqNEhsx7xC1LRUyr06R0QO/gPF9Th/4g=", "narHash": "sha256-8wBFaFTYDGEbCvf3wlAI/BDTa0oY67Q52B19rQW+TaQ=",
"type": "file", "type": "file",
"url": "https://music-desktop-application.s3.yandex.net/stable/Yandex_Music_x64_5.53.1.exe" "url": "https://music-desktop-application.s3.yandex.net/stable/Yandex_Music_x64_5.54.0.exe"
}, },
"original": { "original": {
"type": "file", "type": "file",
"url": "https://music-desktop-application.s3.yandex.net/stable/Yandex_Music_x64_5.53.1.exe" "url": "https://music-desktop-application.s3.yandex.net/stable/Yandex_Music_x64_5.54.0.exe"
} }
}, },
"zapret": { "zapret": {
@@ -202,11 +202,11 @@
"zapret-src": "zapret-src" "zapret-src": "zapret-src"
}, },
"locked": { "locked": {
"lastModified": 1749370165, "lastModified": 1749371039,
"narHash": "sha256-skgsajlryANTvfQqvOj/NMmQLFBI4a9VNspJxmAvwa8=", "narHash": "sha256-EVIawvOWpEBduVzez0alq12WVH7vjmKJK8rvbQVIzls=",
"owner": "n0vvvonder", "owner": "n0vvvonder",
"repo": "zapret-flake.nix", "repo": "zapret-flake.nix",
"rev": "a5351f94da0f022ee0f18fc05819591014d59079", "rev": "3eadb90423a3a67ff4e5bc7fbd0f015cee62f267",
"type": "github" "type": "github"
}, },
"original": { "original": {
+2
View File
@@ -2,6 +2,7 @@
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
ayugram-desktop ayugram-desktop
audacity
ungoogled-chromium ungoogled-chromium
firefox firefox
keepassxc keepassxc
@@ -14,6 +15,7 @@
kdePackages.kcalc kdePackages.kcalc
nicotine-plus nicotine-plus
qbittorrent qbittorrent
qsstv
vscode-fhs vscode-fhs
bottles bottles
]; ];
+10 -8
View File
@@ -25,6 +25,8 @@ programs.neovim = {
cmp-path cmp-path
cmp-cmdline cmp-cmdline
nvim-cmp nvim-cmp
vimtex
coq_nvim
]; ];
extraLuaConfig = '' extraLuaConfig = ''
local function my_on_attach(bufnr) local function my_on_attach(bufnr)
@@ -60,14 +62,14 @@ programs.neovim = {
vim.lsp.enable('pyright') vim.lsp.enable('pyright')
vim.lsp.enable('nil_ls') vim.lsp.enable('nil_ls')
local cmp = require 'cmp' -- local cmp = require 'cmp'
cmp.setup({ -- cmp.setup({
snippet = { -- snippet = {
expand = function(args) -- expand = function(args)
vim.fn["vsnip#anonymous"](args.body) -- vim.fn["vsnip#anonymous"](args.body)
end, -- end,
}, -- },
}) -- })
''; '';
}; };
+1
View File
@@ -89,4 +89,5 @@
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
networking.hostName = "Aphelion"; networking.hostName = "Aphelion";
programs.amnezia-vpn.enable = true;
} }