Compare commits
3 Commits
f3b8aa45f4
...
b9f26e154a
Author | SHA1 | Date | |
---|---|---|---|
b9f26e154a | |||
6c7bc41f37 | |||
317edd6f12 |
@ -1,5 +1,7 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
# Allow Chromium & Electron apps run natively in wayland
|
||||
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||
services.displayManager = {
|
||||
autoLogin = {
|
||||
enable = true;
|
||||
|
11
users/price/dots/.config/hypr/.nvim.lua
Normal file
11
users/price/dots/.config/hypr/.nvim.lua
Normal file
@ -0,0 +1,11 @@
|
||||
local cur_dir = vim.fn.fnamemodify(debug.getinfo(1, "S").source:sub(2), ":p:h")
|
||||
|
||||
vim.filetype.add({
|
||||
extension = {
|
||||
conf = function(path)
|
||||
if path:sub(1, cur_dir:len()) == cur_dir then
|
||||
return "hyprlang"
|
||||
end
|
||||
end,
|
||||
},
|
||||
})
|
1
users/price/dots/.config/nvim/after/ftplugin/kdl.lua
Normal file
1
users/price/dots/.config/nvim/after/ftplugin/kdl.lua
Normal file
@ -0,0 +1 @@
|
||||
vim.opt.commentstring = "// %s"
|
Loading…
x
Reference in New Issue
Block a user