some minor changes to polkit and nvf, and new chaotic url

This commit is contained in:
cnst
2024-12-12 17:49:43 +01:00
parent d2572b04de
commit 8dbe15c923
4 changed files with 25 additions and 58 deletions

48
flake.lock generated
View File

@@ -82,16 +82,18 @@
"nixpkgs": "nixpkgs_3" "nixpkgs": "nixpkgs_3"
}, },
"locked": { "locked": {
"lastModified": 1732922729, "lastModified": 1733967201,
"narHash": "sha256-vp02vUhYVA2yECXTPXifUgb3YtEPYaerpD6lts99010=", "narHash": "sha256-gfA/6BUhFmrfTMaTNToHm5Lm9c/snG7ED4W/x4vCGJs=",
"rev": "e581215cbee1ccf67a08f478d3c49808bc93a523", "owner": "chaotic-cx",
"revCount": 1531, "repo": "nyx",
"type": "tarball", "rev": "1559608a73a9211c7f78e7a0a8c13caca9f31006",
"url": "https://api.flakehub.com/f/pinned/chaotic-cx/nyx/0.1.1531%2Brev-e581215cbee1ccf67a08f478d3c49808bc93a523/01937a42-9657-7647-a534-f2c7fb2bf814/source.tar.gz?rev=e581215cbee1ccf67a08f478d3c49808bc93a523&revCount=1531" "type": "github"
}, },
"original": { "original": {
"type": "tarball", "owner": "chaotic-cx",
"url": "https://flakehub.com/f/chaotic-cx/nyx/%2A.tar.gz" "ref": "nyxpkgs-unstable",
"repo": "nyx",
"type": "github"
} }
}, },
"crane": { "crane": {
@@ -843,35 +845,6 @@
"type": "github" "type": "github"
} }
}, },
"hyprsysteminfo": {
"inputs": {
"hyprutils": [
"hyprland",
"hyprutils"
],
"nixpkgs": [
"hyprland",
"nixpkgs"
],
"systems": [
"hyprland",
"systems"
]
},
"locked": {
"lastModified": 1729184813,
"narHash": "sha256-ARrsIQPFCHWjVl9Sxh8tedIoEsvnV4nORaDmYCyK+kk=",
"owner": "hyprwm",
"repo": "hyprsysteminfo",
"rev": "8b271e2ba39a5a9299e4e7bb60245a71704f5a89",
"type": "github"
},
"original": {
"owner": "hyprwm",
"repo": "hyprsysteminfo",
"type": "github"
}
},
"hyprutils": { "hyprutils": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@@ -3441,7 +3414,6 @@
"hyprland-contrib": "hyprland-contrib", "hyprland-contrib": "hyprland-contrib",
"hyprlock": "hyprlock", "hyprlock": "hyprlock",
"hyprpaper": "hyprpaper", "hyprpaper": "hyprpaper",
"hyprsysteminfo": "hyprsysteminfo",
"lanzaboote": "lanzaboote", "lanzaboote": "lanzaboote",
"microfetch": "microfetch", "microfetch": "microfetch",
"nix-gaming": "nix-gaming", "nix-gaming": "nix-gaming",

View File

@@ -72,17 +72,8 @@
}; };
}; };
hyprsysteminfo = {
url = "github:hyprwm/hyprsysteminfo";
inputs = {
hyprutils.follows = "hyprland/hyprutils";
nixpkgs.follows = "hyprland/nixpkgs";
systems.follows = "hyprland/systems";
};
};
# Chaotic # Chaotic
chaotic.url = "https://flakehub.com/f/chaotic-cx/nyx/*.tar.gz"; chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
# Miscellaneous # Miscellaneous
helix-flake.url = "github:helix-editor/helix"; helix-flake.url = "github:helix-editor/helix";

View File

@@ -32,7 +32,7 @@ in {
logFile = "/tmp/nvim.log"; logFile = "/tmp/nvim.log";
}; };
lsp = { lsp = {
formatOnSave = false; formatOnSave = true;
lspkind.enable = false; lspkind.enable = false;
lightbulb.enable = false; lightbulb.enable = false;
lspsaga.enable = false; lspsaga.enable = false;
@@ -116,7 +116,9 @@ in {
statusline = { statusline = {
lualine = { lualine = {
enable = true; enable = true;
theme = "gruvbox"; setupOpts = {
options.theme = "gruvbox-material";
};
}; };
}; };
@@ -126,11 +128,13 @@ in {
# vim.g.nvim_ghost_python_executable = 'python' # vim.g.nvim_ghost_python_executable = 'python'
# ''; # '';
theme = { theme.enable = false;
enable = true;
name = "gruvbox"; extraPlugins = with pkgs.vimPlugins; {
style = "dark"; gruvbox-material = {
transparent = false; package = gruvbox-material;
setup = "vim.cmd.colorscheme 'gruvbox-material'";
};
}; };
autopairs.nvim-autopairs.enable = true; autopairs.nvim-autopairs.enable = true;
@@ -218,7 +222,7 @@ in {
ui = { ui = {
borders.enable = true; borders.enable = true;
noice.enable = true; noice.enable = false;
colorizer.enable = true; colorizer.enable = true;
modes-nvim.enable = false; # the theme looks terrible with catppuccin modes-nvim.enable = false; # the theme looks terrible with catppuccin
illuminate.enable = true; illuminate.enable = true;

View File

@@ -16,8 +16,8 @@ in {
Install = { Install = {
WantedBy = ["graphical-session.target"]; WantedBy = ["graphical-session.target"];
Wants = ["graphical-session.target"]; # Wants = ["graphical-session.target"];
After = ["graphical-session.target"]; # After = ["graphical-session.target"];
}; };
Service = { Service = {