refactor: remove unneeded inputs
This commit is contained in:
parent
17a5f552a5
commit
2be38c44b8
12 changed files with 37 additions and 28 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, lib, pkgs, ... }: {
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./alacritty.nix
|
./alacritty.nix
|
||||||
./dunst.nix
|
./dunst.nix
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
{ config, pkgs, ... }:
|
|
||||||
{
|
{
|
||||||
programs.waybar = {
|
programs.waybar = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
@ -9,16 +8,29 @@
|
||||||
layer = "bottom";
|
layer = "bottom";
|
||||||
position = "top";
|
position = "top";
|
||||||
output = [
|
output = [
|
||||||
"DP-3" "DP-4" "DP-5"
|
"DP-3"
|
||||||
"DP-6" "DP-7" "DP-8"
|
"DP-4"
|
||||||
|
"DP-5"
|
||||||
|
"DP-6"
|
||||||
|
"DP-7"
|
||||||
|
"DP-8"
|
||||||
"DP-1"
|
"DP-1"
|
||||||
"eDP-1"
|
"eDP-1"
|
||||||
];
|
];
|
||||||
|
|
||||||
modules-left = ["hyprland/workspaces" "hyprland/mode"];
|
modules-left = [
|
||||||
|
"hyprland/workspaces"
|
||||||
|
"hyprland/mode"
|
||||||
|
];
|
||||||
modules-center = [ "hyprland/window" ];
|
modules-center = [ "hyprland/window" ];
|
||||||
modules-right = ["pulseaudio" "backlight" "network" "battery" "clock" "tray"];
|
modules-right = [
|
||||||
|
"pulseaudio"
|
||||||
|
"backlight"
|
||||||
|
"network"
|
||||||
|
"battery"
|
||||||
|
"clock"
|
||||||
|
"tray"
|
||||||
|
];
|
||||||
|
|
||||||
cpu = {
|
cpu = {
|
||||||
interval = 15;
|
interval = 15;
|
||||||
|
|
@ -43,11 +55,14 @@
|
||||||
phone = "";
|
phone = "";
|
||||||
portable = "";
|
portable = "";
|
||||||
car = "";
|
car = "";
|
||||||
default = ["" ""];
|
default = [
|
||||||
|
""
|
||||||
|
""
|
||||||
|
];
|
||||||
};
|
};
|
||||||
scroll-step = 1;
|
scroll-step = 1;
|
||||||
on-click = "pavucontrol";
|
on-click = "pavucontrol";
|
||||||
ignored-sinks = ["Easy Effects Sink"];
|
ignored-sinks = [ "Easy Effects Sink" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
backlight = {
|
backlight = {
|
||||||
|
|
@ -72,7 +87,13 @@
|
||||||
|
|
||||||
battery = {
|
battery = {
|
||||||
format = "{capacity}% {icon}";
|
format = "{capacity}% {icon}";
|
||||||
"format-icons" = ["" "" "" "" ""];
|
"format-icons" = [
|
||||||
|
""
|
||||||
|
""
|
||||||
|
""
|
||||||
|
""
|
||||||
|
""
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
clock = {
|
clock = {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
{ config, pkgs, ... }:
|
|
||||||
{
|
{
|
||||||
programs.wofi = {
|
programs.wofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
{ config, age, ... }:
|
|
||||||
{
|
{
|
||||||
programs.ssh = {
|
programs.ssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,3 @@
|
||||||
{
|
|
||||||
agenix,
|
|
||||||
config,
|
|
||||||
inputs,
|
|
||||||
pkgs,
|
|
||||||
spicetify-nix,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./packages.nix
|
./packages.nix
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{ inputs, pkgs, config, spicetify-nix, ... }:
|
{ pkgs, spicetify-nix, ... }:
|
||||||
{
|
{
|
||||||
programs.spicetify =
|
programs.spicetify =
|
||||||
let
|
let
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{ services, ... }: {
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./btop
|
./btop
|
||||||
./blueman.nix
|
./blueman.nix
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
{ services, ... }:
|
|
||||||
{
|
{
|
||||||
services.easyeffects = {
|
services.easyeffects = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }: {
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./bootloader.nix
|
./bootloader.nix
|
||||||
./environment.nix
|
./environment.nix
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, ... }: {
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./bluetooth.nix
|
./bluetooth.nix
|
||||||
./diskservices.nix
|
./diskservices.nix
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
{ config, ... }:
|
|
||||||
{
|
{
|
||||||
networking = {
|
networking = {
|
||||||
hostName = "rhea-laptop";
|
hostName = "rhea-laptop";
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, pkgs, ... }: {
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./agenix.nix
|
./agenix.nix
|
||||||
./auth.nix
|
./auth.nix
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue