Compare commits
No commits in common. "85f0b82334a67a91a4a1e724446d40d7ed9929f5" and "9b0b088ecc61fa3253113b770b83f8ddfecf6376" have entirely different histories.
85f0b82334
...
9b0b088ecc
@ -18,6 +18,9 @@
|
|||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
home-manager
|
home-manager
|
||||||
|
lf
|
||||||
|
arduino-ide
|
||||||
|
calibre
|
||||||
tor
|
tor
|
||||||
tshark
|
tshark
|
||||||
freecad-wayland
|
freecad-wayland
|
||||||
|
|||||||
@ -19,7 +19,6 @@ in
|
|||||||
file
|
file
|
||||||
vim
|
vim
|
||||||
fastfetch
|
fastfetch
|
||||||
lf
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@ -18,8 +18,6 @@
|
|||||||
./vpn
|
./vpn
|
||||||
./utilities
|
./utilities
|
||||||
./flatpak
|
./flatpak
|
||||||
./ide
|
|
||||||
./ebook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Timzone and locales (same for all machines so I put it here)
|
# Timzone and locales (same for all machines so I put it here)
|
||||||
|
|||||||
@ -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 ];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@ -1,6 +0,0 @@
|
|||||||
{ lib, config, pkgs, ... }:
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./calibre.nix
|
|
||||||
];
|
|
||||||
}
|
|
||||||
@ -39,8 +39,6 @@ in
|
|||||||
dev.enable = true;
|
dev.enable = true;
|
||||||
gaming.enable = true;
|
gaming.enable = true;
|
||||||
};
|
};
|
||||||
arduino.enable = true;
|
|
||||||
calibre.enable = true;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@ -37,8 +37,6 @@ in
|
|||||||
dev.enable = true;
|
dev.enable = true;
|
||||||
media.enable = true;
|
media.enable = true;
|
||||||
};
|
};
|
||||||
arduino.enable = true;
|
|
||||||
calibre.enable = true;
|
|
||||||
};
|
};
|
||||||
services.logind.lidSwitch = "ignore";
|
services.logind.lidSwitch = "ignore";
|
||||||
};
|
};
|
||||||
|
|||||||
@ -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 ];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@ -1,6 +0,0 @@
|
|||||||
{ lib, config, pkgs, ... }:
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./arduino.nix
|
|
||||||
];
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue
Block a user