This commit is contained in:
waveringana 2025-06-16 00:33:50 -04:00
parent 397d3b06f1
commit c2db155794
4 changed files with 20 additions and 26 deletions

View file

@ -10,7 +10,6 @@
hyfetch hyfetch
sway-contrib.grimshot sway-contrib.grimshot
discord discord
pamixer
]; ];
environment.sessionVariables.NIXOS_OZONE_WL = "1"; environment.sessionVariables.NIXOS_OZONE_WL = "1";

View file

@ -13,8 +13,6 @@
};*/ };*/
ghostty.enable = true; ghostty.enable = true;
ghostty.flavor = "mocha"; ghostty.flavor = "mocha";
nvim.enable = true;
nvim.flavor = "mocha";
}; };
programs.ghostty.enable = true; programs.ghostty.enable = true;
@ -23,20 +21,6 @@
theme = "catppuccin-mocha"; theme = "catppuccin-mocha";
}; };
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
vimdiffAlias = true;
plugins = with pkgs.vimPlugins; [
nvim-lspconfig
nvim-treesitter.withAllGrammars
plenary-nvim
mini-nvim
];
};
home.pointerCursor = { home.pointerCursor = {
gtk.enable = true; gtk.enable = true;
package = pkgs.phinger-cursors; package = pkgs.phinger-cursors;
@ -87,7 +71,7 @@ window#waybar {
margin: 0px; margin: 0px;
border: 0px; border: 0px;
/*background-color:rgb(0, 0, 0);*/ /*background-color:rgb(0, 0, 0);*/
background-color: rgba(0, 0, 0, 0.8); background-color: rgba(0, 0, 0, 0.9);
color: @text; color: @text;
} }
@ -146,7 +130,7 @@ window#waybar {
height = 34; height = 34;
output = [ output = [
"HDMI-A-1" "HDMI-A-1"
"DP-1" "DP-2"
]; ];
modules-left = [ "sway/workspaces" ]; modules-left = [ "sway/workspaces" ];
modules-center = [ "sway/window" ]; modules-center = [ "sway/window" ];
@ -161,4 +145,4 @@ window#waybar {
}; };
home.stateVersion = "25.05"; home.stateVersion = "25.05";
} }

View file

@ -36,11 +36,6 @@
networking.hostName = "focalor"; networking.hostName = "focalor";
networking.hostId = "84bdc587"; networking.hostId = "84bdc587";
programs.steam.enable = true;
programs.steam.gamescopeSession.enable = true;
programs.appimage.enable = true;
programs.appimage.binfmt = true;
systemd.network = { systemd.network = {
enable = true; enable = true;
netdevs."br0" = { netdevs."br0" = {
@ -69,6 +64,16 @@
}; };
}; };
/*networking = {
firewall.enable = false;
firewall.trustedInterfaces = [
"tailscale0"
];
nameservers = [ "10.0.0.210" "1.1.1.1" ];
useDHCP = true;
firewall.allowedTCPPorts = [22 80 443 2456 2457 9000 9001 9002];
};*/
services.resolved = { services.resolved = {
enable = true; enable = true;
dnssec = "true"; dnssec = "true";
@ -77,6 +82,12 @@
dnsovertls = "true"; dnsovertls = "true";
}; };
#boot.supportedFilesystems = [ "zfs" ];
#boot.kernelModules = [ "nct6775" "coretemp" ];
#services.zfs.autoScrub.enable = true;
#services.zfs.trim.enable = true;
services.vscode-server.enable = true; services.vscode-server.enable = true;
services.vscode-server.nodejsPackage = pkgs.nodejs_20; services.vscode-server.nodejsPackage = pkgs.nodejs_20;

View file

@ -55,7 +55,7 @@ if [[ "$GUEST_NAME" != "win11" ]]; then
fi fi
if [[ "$HOOK_NAME" == "prepare" && "$STATE_NAME" == "begin" ]]; then if [[ "$HOOK_NAME" == "prepare" && "$STATE_NAME" == "begin" ]]; then
echo "do nothing" start_hook
elif [[ "$HOOK_NAME" == "release" && "$STATE_NAME" == "end" ]]; then elif [[ "$HOOK_NAME" == "release" && "$STATE_NAME" == "end" ]]; then
revert_hook revert_hook
fi fi