1
0
forked from extern/nix-config

chore: Formatting

Also removes redundant comments.
This commit is contained in:
Donovan Glover 2023-06-26 18:35:00 -04:00
parent 9892ae3fce
commit 62207c05fa
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
12 changed files with 9 additions and 11 deletions

View File

@ -4,6 +4,7 @@
programs.htop = {
enable = true;
package = pkgs."htop-vim";
settings = {
tree_view = 1;
hide_userland_threads = 1;

View File

@ -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;

View File

@ -3,6 +3,7 @@
{
programs.swaylock = {
package = pkgs."swaylock-effects";
settings = {
show-keyboard-layout = true;
daemonize = true;

View File

@ -3,6 +3,7 @@
{
programs.gamemode = {
enable = true;
settings = {
general = {
renice = 10;

View File

@ -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;

View File

@ -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";

View File

@ -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";
};
}

View File

@ -1,4 +1,3 @@
{
# Don't use link-local multicast name resolution
services.resolved.llmnr = "false";
}

View File

@ -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;
};
}

View File

@ -1,4 +1,3 @@
{
# Use zram for swap
zramSwap.enable = true; # Swap
zramSwap.enable = true;
}

View File

@ -5,6 +5,7 @@
(final: prev: {
joshuto = prev.joshuto.overrideAttrs (oldAttrs: rec {
version = "1d7f9067189fbf730605f373d591654651e01689";
src = final.fetchFromGitHub {
owner = "kamiyaa";
repo = "joshuto";

View File

@ -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
'';