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,
config,
pkgs,
...
}: {

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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