forked from extern/nix-config
chore: Formatting
Also removes redundant comments.
This commit is contained in:
parent
9892ae3fce
commit
62207c05fa
@ -4,6 +4,7 @@
|
||||
programs.htop = {
|
||||
enable = true;
|
||||
package = pkgs."htop-vim";
|
||||
|
||||
settings = {
|
||||
tree_view = 1;
|
||||
hide_userland_threads = 1;
|
||||
|
@ -3,6 +3,7 @@ let
|
||||
vim-nix-rummik = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
||||
pname = "vim-nix";
|
||||
version = "0def8020f152a51c011a707680780dac61a8989a";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "rummik";
|
||||
repo = "vim-nix";
|
||||
@ -152,6 +153,7 @@ in
|
||||
|
||||
tnoremap <C-space> <C-\><C-n>
|
||||
'';
|
||||
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
{
|
||||
plugin = nvim-tree-lua;
|
||||
|
@ -3,6 +3,7 @@
|
||||
{
|
||||
programs.swaylock = {
|
||||
package = pkgs."swaylock-effects";
|
||||
|
||||
settings = {
|
||||
show-keyboard-layout = true;
|
||||
daemonize = true;
|
||||
|
@ -3,6 +3,7 @@
|
||||
{
|
||||
programs.gamemode = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
general = {
|
||||
renice = 10;
|
||||
|
@ -20,7 +20,6 @@
|
||||
ibus.engines = with pkgs.ibus-engines; [ mozc ];
|
||||
};
|
||||
|
||||
# services.gnome.core-utilities.enable = false;
|
||||
environment.gnome.excludePackages = [ pkgs.gnome-tour ];
|
||||
|
||||
hardware.pulseaudio.enable = false;
|
||||
|
@ -4,11 +4,13 @@
|
||||
services.greetd = {
|
||||
enable = true;
|
||||
restart = false;
|
||||
|
||||
settings = {
|
||||
default_session = {
|
||||
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd Hyprland";
|
||||
user = "greeter";
|
||||
};
|
||||
|
||||
initial_session = {
|
||||
command = "${pkgs.hyprland}/bin/Hyprland";
|
||||
user = "user";
|
||||
|
@ -1,9 +1,6 @@
|
||||
{
|
||||
services.logind = {
|
||||
# Don't suspend on lid close
|
||||
lidSwitch = "ignore";
|
||||
|
||||
# Don't shutdown when power button is short-pressed
|
||||
extraConfig = "HandlePowerKey=ignore";
|
||||
};
|
||||
}
|
||||
|
@ -1,4 +1,3 @@
|
||||
{
|
||||
# Don't use link-local multicast name resolution
|
||||
services.resolved.llmnr = "false";
|
||||
}
|
||||
|
@ -1,9 +1,6 @@
|
||||
{
|
||||
systemd = {
|
||||
# Limit shutdown wait time to 10 seconds
|
||||
extraConfig = "DefaultTimeoutStopSec=10s";
|
||||
|
||||
# Don't wait for an internet connection before obtaining a graphical interface
|
||||
services.NetworkManager-wait-online.enable = false;
|
||||
};
|
||||
}
|
||||
|
@ -1,4 +1,3 @@
|
||||
{
|
||||
# Use zram for swap
|
||||
zramSwap.enable = true; # Swap
|
||||
zramSwap.enable = true;
|
||||
}
|
||||
|
@ -5,6 +5,7 @@
|
||||
(final: prev: {
|
||||
joshuto = prev.joshuto.overrideAttrs (oldAttrs: rec {
|
||||
version = "1d7f9067189fbf730605f373d591654651e01689";
|
||||
|
||||
src = final.fetchFromGitHub {
|
||||
owner = "kamiyaa";
|
||||
repo = "joshuto";
|
||||
|
@ -12,7 +12,6 @@
|
||||
};
|
||||
|
||||
postPatch = /* bash */ ''
|
||||
# use hyprctl to switch workspaces
|
||||
sed -i 's/zext_workspace_handle_v1_activate(workspace_handle_);/const std::string command = "hyprctl dispatch workspace " + name_;\n\tsystem(command.c_str());/g' src/modules/wlr/workspace_manager.cpp
|
||||
'';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user