formatting

This commit is contained in:
js0ny 2025-10-24 21:27:22 +01:00
parent 93664e4120
commit c84204b373
18 changed files with 231 additions and 145 deletions

View file

@ -1,47 +1,47 @@
{ config, pkgs, ... }:
{
system.defaults.dock = {
appswitcher-all-displays = true;
autohide = true;
# Launch Animation
launchanim = false;
# Minimize Animation
mineffect = "suck";
minimize-to-application = true;
persistent-apps = [
{ app = "/Applications/Vivaldi.app"; }
{ app = "/Applications/kitty.app"; }
{ app = "/Applications/Obsidian.app"; }
{ app = "Applications/Visual Studio Code.app"; }
# { app = "/Applications/LibreWolf.app"; }
# { spacer = { small = false; }; }
# { spacer = { small = true; }; }
# { folder = "/System/Applications/Utilities"; }
# { folder = "/Users/js0ny/Downloads/"; }
];
persistent-others = [
"/Users/js0ny/Downloads"
# "/Users/js0ny/Source"
];
show-recents = false;
orientation = "bottom";
# tr - Top Right
# tl - Top Left (disable this)
# br - Bottom Right
# bl - Bottom Left
# `1`: Disabled
# `2`: Mission Control
# `3`: Application Windows
# `4`: Desktop
# `5`: Start Screen Saver
# `6`: Disable Screen Saver
# `7`: Dashboard
# `10`: Put Display to Sleep
# `11`: Launchpad
# `12`: Notification Center
# `13`: Lock Screen
# `14`: Quick Note
wvous-tr-corner = 2;
wvous-bl-corner = 11; # Simulate Windows button on Windows
wvous-br-corner = 4;
};}
{...}: {
system.defaults.dock = {
appswitcher-all-displays = true;
autohide = true;
# Launch Animation
launchanim = false;
# Minimize Animation
mineffect = "suck";
minimize-to-application = true;
persistent-apps = [
{app = "/Applications/Vivaldi.app";}
{app = "/Applications/kitty.app";}
{app = "/Applications/Obsidian.app";}
{app = "Applications/Visual Studio Code.app";}
# { app = "/Applications/LibreWolf.app"; }
# { spacer = { small = false; }; }
# { spacer = { small = true; }; }
# { folder = "/System/Applications/Utilities"; }
# { folder = "/Users/js0ny/Downloads/"; }
];
persistent-others = [
"/Users/js0ny/Downloads"
# "/Users/js0ny/Source"
];
show-recents = false;
orientation = "bottom";
# tr - Top Right
# tl - Top Left (disable this)
# br - Bottom Right
# bl - Bottom Left
# `1`: Disabled
# `2`: Mission Control
# `3`: Application Windows
# `4`: Desktop
# `5`: Start Screen Saver
# `6`: Disable Screen Saver
# `7`: Dashboard
# `10`: Put Display to Sleep
# `11`: Launchpad
# `12`: Notification Center
# `13`: Lock Screen
# `14`: Quick Note
wvous-tr-corner = 2;
wvous-bl-corner = 11; # Simulate Windows button on Windows
wvous-br-corner = 4;
};
}

View file

@ -1,5 +1,4 @@
{ config, pkgs, ... }:
{
{...}: {
system.defaults = {
finder = {
AppleShowAllFiles = true;
@ -64,5 +63,4 @@
ShowSeconds = true;
};
};
}
}

View file

@ -1,5 +1,6 @@
# ~/.config/nixcfgs/hosts/zephyrus/default.nix
{pkgs, ...}: {
{ pkgs, ... }:
{
imports = [
# Host-specific configs
./asus.nix
@ -20,8 +21,8 @@
../../modules/nixos/hardware/udev/basys3.nix
# desktop environment and display manager
../../modules/nixos/desktop/de/gnome.nix
../../modules/nixos/desktop/dm/gdm.nix
../../modules/nixos/desktop/de/gnome.nix
# desktop programs
../../modules/nixos/programs/chromium.nix
@ -46,7 +47,7 @@
boot.kernelPackages = pkgs.linuxPackages_latest;
# Use unfree software
# nixpkgs.config.allowUnfree = true;
nixpkgs.config.allowUnfree = true;
# Disable modem
networking.modemmanager.enable = false;