Compare commits

..

No commits in common. "85f0b82334a67a91a4a1e724446d40d7ed9929f5" and "9b0b088ecc61fa3253113b770b83f8ddfecf6376" have entirely different histories.

9 changed files with 3 additions and 49 deletions

View File

@ -18,6 +18,9 @@
environment.systemPackages = with pkgs; [
home-manager
lf
arduino-ide
calibre
tor
tshark
freecad-wayland

View File

@ -19,7 +19,6 @@ in
file
vim
fastfetch
lf
];
};
}

View File

@ -18,8 +18,6 @@
./vpn
./utilities
./flatpak
./ide
./ebook
];
# Timzone and locales (same for all machines so I put it here)

View File

@ -1,15 +0,0 @@
{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.calibre.enable = mkOption {
type = types.bool;
default = false;
description = "enable calibre";
};
config = mkIf config.smayzy.calibre.enable {
environment.systemPackages = with pkgs; [ calibre ];
};
}

View File

@ -1,6 +0,0 @@
{ lib, config, pkgs, ... }:
{
imports = [
./calibre.nix
];
}

View File

@ -39,8 +39,6 @@ in
dev.enable = true;
gaming.enable = true;
};
arduino.enable = true;
calibre.enable = true;
};
};
}

View File

@ -37,8 +37,6 @@ in
dev.enable = true;
media.enable = true;
};
arduino.enable = true;
calibre.enable = true;
};
services.logind.lidSwitch = "ignore";
};

View File

@ -1,15 +0,0 @@
{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.arduino.enable = mkOption {
type = types.bool;
default = false;
description = "arduino ide";
};
config = mkIf config.smayzy.arduino.enable {
environment.systemPackages = with pkgs; [ arduino-ide ];
};
}

View File

@ -1,6 +0,0 @@
{ lib, config, pkgs, ... }:
{
imports = [
./arduino.nix
];
}