Compare commits

..

No commits in common. "54b0bb5e7b90636da9f97de44ab2c78288020b3d" and "61e899a9fae004b0ccdf98b96c51531f71c45bf4" have entirely different histories.

4 changed files with 32 additions and 20 deletions

30
flake.lock generated
View File

@ -11,11 +11,11 @@
"rust-overlay": "rust-overlay"
},
"locked": {
"lastModified": 1718869541,
"narHash": "sha256-smhpGh1x/8mNl+sFL8SbeWnx0bK4HWjmdRA3mIwGjPU=",
"lastModified": 1709831932,
"narHash": "sha256-WsP8rOFa/SqYNbVtYJ/l2mWWOgyDTJFbITMV8tv0biI=",
"owner": "yaxitech",
"repo": "ragenix",
"rev": "8a254bbaa93fbd38e16f70fa81af6782794e046e",
"rev": "06de099ef02840ec463419f12de73729d458e1eb",
"type": "github"
},
"original": {
@ -156,11 +156,11 @@
]
},
"locked": {
"lastModified": 1718846788,
"narHash": "sha256-9dtXYtEkmXoUJV+PGLqscqF7qTn4AIhAKpFWRFU2NYs=",
"lastModified": 1718588625,
"narHash": "sha256-8ZbrJq1jcmyzJ4SDkvd8JOZD4/fNUHpL4cpqVe4w3CU=",
"owner": "nix-community",
"repo": "disko",
"rev": "e1174d991944a01eaaa04bc59c6281edca4c0e6e",
"rev": "8262659fc990cecdf6a8de74c3de7b6ec58c2276",
"type": "github"
},
"original": {
@ -336,11 +336,11 @@
]
},
"locked": {
"lastModified": 1718983978,
"narHash": "sha256-lp6stESwTLBZUQ5GBivxwNehShmBp4jqeX/1xahM61w=",
"lastModified": 1718744742,
"narHash": "sha256-kOG10gJ3zLZNiom9NXJM4/mA4/lsmR3rp74YVw+iros=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "c559542f0aa87971a7f4c1b3478fe33cc904b902",
"rev": "0dd1c1495af6e6424695670343236f0053bf4947",
"type": "github"
},
"original": {
@ -391,11 +391,11 @@
"pre-commit-hooks": "pre-commit-hooks"
},
"locked": {
"lastModified": 1718829834,
"narHash": "sha256-SBioRAhjYMcoBpIGV+kdquRjlm8DRD2dv8N4RXM694U=",
"lastModified": 1718738684,
"narHash": "sha256-PxJuFe186iEUkJ7aB1lEUKRscKWy4yC+hGNXhOTgTaY=",
"owner": "nixos",
"repo": "nix",
"rev": "1c131ec2b71fa7ad6fd285ed2a9fcc4cf616b3a6",
"rev": "0c6029669dcd591705770d4e49ff9cd73b9e2d5d",
"type": "github"
},
"original": {
@ -470,11 +470,11 @@
},
"nixpkgs_3": {
"locked": {
"lastModified": 1718895438,
"narHash": "sha256-k3JqJrkdoYwE3fHE6xGDY676AYmyh4U2Zw+0Bwe5DLU=",
"lastModified": 1718530797,
"narHash": "sha256-pup6cYwtgvzDpvpSCFh1TEUjw2zkNpk8iolbKnyFmmU=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "d603719ec6e294f034936c0d0dc06f689d91b6c3",
"rev": "b60ebf54c15553b393d144357375ea956f89e9a9",
"type": "github"
},
"original": {

View File

@ -1,8 +1,21 @@
{ ... }:
{
inputs,
lib,
pkgs,
...
}:
{
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa = {
enable = true;
support32Bit = true;
};
pulse.enable = true;
wireplumber.enable = true;
jack.enable = true;
};
}

View File

@ -26,6 +26,6 @@
];
};
};
hardware.graphics.enable = true;
hardware.opengl.enable = true;
services.spice-vdagentd.enable = true;
}

View File

@ -209,7 +209,6 @@ return {
local null_ls = require("null-ls")
null_ls.setup({
sources = {
null_ls.builtins.formatting.google_java_format,
null_ls.builtins.formatting.stylua,
null_ls.builtins.formatting.asmfmt,
null_ls.builtins.formatting.black,
@ -232,7 +231,7 @@ return {
vim.lsp.buf.format({
async = true,
filter = function(client)
return not vim.list_contains({ "lua_ls", "jdtls" }, client.name)
return not vim.list_contains({ "lua_ls" }, client.name)
end,
})
end,