remove unneeded inputs to allow deadnix

This commit is contained in:
Callum Leslie 2024-09-05 10:44:38 +01:00
parent d84b7c6008
commit 89d92d10f3
Signed by: cleslie
GPG key ID: D382C4AFEECEAA90
26 changed files with 21 additions and 110 deletions

View file

@ -1,6 +1,5 @@
{ {
inputs, inputs,
config,
pkgs, pkgs,
... ...
}: { }: {

View file

@ -1,9 +1,4 @@
{ {...}: {
config,
inputs,
pkgs,
...
}: {
programs.alacritty = { programs.alacritty = {
enable = true; enable = true;
settings = { settings = {

View file

@ -1,9 +1,4 @@
{ {...}: {
inputs,
config,
pkgs,
...
}: {
imports = [ imports = [
./hypr ./hypr
./waybar ./waybar

View file

@ -1,9 +1,4 @@
{ {config, ...}: {
config,
inputs,
pkgs,
...
}: {
programs.direnv = { programs.direnv = {
enable = true; enable = true;
nix-direnv.enable = true; nix-direnv.enable = true;

View file

@ -1,9 +1,4 @@
{ {inputs, ...}: {
config,
inputs,
pkgs,
...
}: {
programs.firefox = { programs.firefox = {
enable = true; enable = true;
policies = { policies = {

View file

@ -1,9 +1,4 @@
{ {pkgs, ...}: {
config,
inputs,
pkgs,
...
}: {
programs.fish = { programs.fish = {
enable = true; enable = true;

View file

@ -1,9 +1,4 @@
{ {...}: {
config,
inputs,
pkgs,
...
}: {
programs.git = { programs.git = {
enable = true; enable = true;

View file

@ -1,9 +1,4 @@
{ {...}: {
config,
inputs,
pkgs,
...
}: {
services = { services = {
blueman-applet.enable = true; blueman-applet.enable = true;
network-manager-applet.enable = true; network-manager-applet.enable = true;

View file

@ -1,6 +1,5 @@
{ {
config, config,
inputs,
pkgs, pkgs,
lib, lib,
... ...

View file

@ -1,9 +1,4 @@
{ {pkgs, ...}: {
config,
inputs,
pkgs,
...
}: {
programs.rbw = { programs.rbw = {
enable = true; enable = true;
settings = { settings = {

View file

@ -1,9 +1,4 @@
{ {pkgs, ...}: {
config,
inputs,
pkgs,
...
}: {
programs.rofi = { programs.rofi = {
enable = true; enable = true;
package = pkgs.rofi-wayland; package = pkgs.rofi-wayland;

View file

@ -1,9 +1,4 @@
{ {pkgs, ...}: {
config,
inputs,
pkgs,
...
}: {
programs.tmux = { programs.tmux = {
enable = true; enable = true;
shortcut = "x"; shortcut = "x";

View file

@ -1,9 +1,4 @@
{ {pkgs, ...}: {
config,
inputs,
pkgs,
...
}: {
programs.waybar = { programs.waybar = {
enable = true; enable = true;
package = pkgs.waybar.override { package = pkgs.waybar.override {

View file

@ -1,9 +1,4 @@
{ {...}: {
inputs,
config,
pkgs,
...
}: {
imports = [./mako]; imports = [./mako];
services = { services = {
network-manager-applet.enable = true; network-manager-applet.enable = true;

View file

@ -1,9 +1,4 @@
{ {...}: {
config,
inputs,
pkgs,
...
}: {
services.mako = { services.mako = {
enable = true; enable = true;
defaultTimeout = 7000; defaultTimeout = 7000;

View file

@ -1,12 +1,8 @@
{ {
config, config,
pkgs, pkgs,
inputs,
self,
... ...
}: let }: {
#inherit (self.nixosModules) keys;
in {
nixpkgs.hostPlatform = "x86_64-linux"; nixpkgs.hostPlatform = "x86_64-linux";
c.services.mesh = { c.services.mesh = {
enable = true; enable = true;

View file

@ -1,4 +1,4 @@
{inputs, ...}: { {...}: {
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
./configuration.nix ./configuration.nix

View file

@ -1,4 +1,4 @@
{config, ...}: { {...}: {
networking = { networking = {
hostName = "artemis"; hostName = "artemis";
networkmanager.enable = true; networkmanager.enable = true;

View file

@ -1,7 +1,6 @@
{ {
inputs, inputs,
mods, mods,
self,
... ...
}: let }: let
sharedModules = [inputs.home-manager.nixosModules.home-manager inputs.stylix.nixosModules.stylix inputs.agenix.nixosModules.default] ++ mods.sharedModules; sharedModules = [inputs.home-manager.nixosModules.home-manager inputs.stylix.nixosModules.stylix inputs.agenix.nixosModules.default] ++ mods.sharedModules;

View file

@ -1,13 +1,8 @@
{ {
config, config,
lib,
pkgs, pkgs,
inputs,
self,
... ...
}: let }: {
#inherit (self.nixosModules) keys;
in {
nixpkgs.hostPlatform = "x86_64-linux"; nixpkgs.hostPlatform = "x86_64-linux";
c.services.mesh = { c.services.mesh = {
enable = true; enable = true;

View file

@ -1,4 +1,4 @@
{inputs, ...}: { {...}: {
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
./configuration.nix ./configuration.nix

View file

@ -1,7 +1,6 @@
{ {
config, config,
lib, lib,
pkgs,
modulesPath, modulesPath,
... ...
}: { }: {

View file

@ -1,7 +1,6 @@
{ {
pkgs, pkgs,
config, config,
lib,
... ...
}: let }: let
mediaDir = "/var/lib/media"; mediaDir = "/var/lib/media";

View file

@ -1,9 +1,4 @@
{ {config, ...}: {
config,
lib,
pkgs,
...
}: {
networking = { networking = {
hostName = "hermes"; hostName = "hermes";
enableIPv6 = false; enableIPv6 = false;

View file

@ -1,4 +1,4 @@
{pkgs, ...}: { {...}: {
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
} }

View file

@ -1,8 +1,3 @@
{ {pkgs, ...}: {
config,
pkgs,
lib,
...
}: {
services.dbus.packages = [pkgs.gcr]; services.dbus.packages = [pkgs.gcr];
} }