added nixfmt-tree as formatter
also ran it, which is why so many files were modified
This commit is contained in:
parent
e8487933ec
commit
f482d6f06b
14 changed files with 125 additions and 108 deletions
|
@ -1,4 +1,5 @@
|
|||
{config, ...}: {
|
||||
{ ... }:
|
||||
{
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ ... }:
|
||||
{
|
||||
programs.eza = {
|
||||
enable = true;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
programs.floorp = {
|
||||
enable = true;
|
||||
profiles.blue = {
|
||||
|
|
|
@ -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
|
||||
];
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{pkgs, lib, ... }: {
|
||||
{ pkgs, lib, ... }:
|
||||
{
|
||||
programs.hyprlock = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
|
@ -2,7 +2,8 @@
|
|||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
}:
|
||||
{
|
||||
programs.nvf = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
|
@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{...}: {
|
||||
{ ... }:
|
||||
{
|
||||
programs.zellij = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue