added nixfmt-tree as formatter

also ran it, which is why so many files were modified
This commit is contained in:
Gabriella Bere 2025-06-03 16:10:04 +01:00
parent e8487933ec
commit f482d6f06b
14 changed files with 125 additions and 108 deletions

View file

@ -1,4 +1,5 @@
{config, ...}: {
{ ... }:
{
programs.direnv = {
enable = true;
enableZshIntegration = true;

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ ... }:
{
programs.eza = {
enable = true;

View file

@ -1,4 +1,5 @@
{pkgs, ...}: {
{ pkgs, ... }:
{
programs.floorp = {
enable = true;
profiles.blue = {

View file

@ -2,7 +2,8 @@
pkgs,
lib,
...
}: {
}:
{
home.username = "blue";
home.homeDirectory = "/home/blue";
@ -70,7 +71,7 @@
ardour # DAW
gimp3 # GNU Image Manipulation Program, pretty self explanatory
networkmanagerapplet # Tray icon for managing networking
blueman # Tray icon for managing bluetooth
];

View file

@ -1,9 +1,10 @@
{...}: {
{ ... }:
{
# Enable Hyprland compositor
wayland.windowManager.hyprland = {
enable = true;
xwayland.enable = true;
systemd.variables = ["--all"];
systemd.variables = [ "--all" ];
settings = {
misc = {
enable_anr_dialog = false;

View file

@ -1,4 +1,5 @@
{pkgs, lib, ... }: {
{ pkgs, lib, ... }:
{
programs.hyprlock = {
enable = true;
settings = {

View file

@ -2,7 +2,8 @@
config,
pkgs,
...
}: {
}:
{
programs.nvf = {
enable = true;
settings = {

View file

@ -1,8 +1,9 @@
{pkgs, ...}: {
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-pipewire-audio-capture
];
};
{ pkgs, ... }:
{
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-pipewire-audio-capture
];
};
}

View file

@ -1,4 +1,5 @@
{pkgs, ...}: {
{ pkgs, ... }:
{
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/heetch.yaml";
@ -31,7 +32,7 @@
};
polarity = "dark";
targets = {
floorp.profileNames = ["blue"];
floorp.profileNames = [ "blue" ];
};
};
}

View file

@ -1,4 +1,5 @@
{config, ...}: {
{ config, ... }:
{
programs.waybar = {
enable = true;
systemd.enable = true; # using these instead of exec-once beacuse SOME packages (swaync) dont let you disable them
@ -7,7 +8,7 @@
layer = "top";
position = "top";
height = 30;
modules-left = ["hyprland/workspaces"];
modules-left = [ "hyprland/workspaces" ];
modules-center = [
"clock"
"custom/swaync"

View file

@ -1,4 +1,5 @@
{...}: {
{ ... }:
{
programs.zellij = {
enable = true;
enableZshIntegration = true;