This commit is contained in:
Chris Kruining 2024-07-23 22:34:30 +02:00
parent e01ffa4cec
commit becdaee408
8 changed files with 276 additions and 18 deletions

View file

@ -1,11 +1,5 @@
{
inputs,
options,
config,
lib,
pkgs,
...
}: let
{ inputs, options, config, lib, pkgs, ... }:
let
inherit (builtins) toJSON;
inherit (lib.attrsets) attrValues mapAttrsToList;
inherit (lib.modules) mkIf mkMerge;

View file

@ -13,9 +13,11 @@ in
config = mkMerge [
(mkIf config.modules.develop.rust.enable {
nixpkgs.overlays = [inputs.rust.overlays.default];
user.packages = attrValues {
rust-package = pkgs.rust-bin.nightly.latest.default;
inherit (pkgs) rust-analyser rust-script;
rust-package = pkgs.rust-bin.stable.latest.default;
inherit (pkgs) rust-analyzer rust-script;
};
environment.shellAliases = {

View file

@ -15,7 +15,7 @@ in
gtk = {
name = "everforrest-Dark-BL";
package = pkgs.my.everforrest-gtk;
# package = pkgs.my.everforrest-gtk;
};
iconTheme = {

View file

@ -12,7 +12,7 @@ in
enable = mkEnableOption "enable podman";
};
config = mkIf options.modules.virtualisation.podman.enable {
config = mkIf config.modules.virtualisation.podman.enable {
virtualisation = {
containers.enable = true;