Merge remote-tracking branch 'origin/nixos' into nixos

dev-docs
Moritz Böhme 2023-08-27 19:35:45 +02:00
commit cf6a46d8ae
Signed by: moritz
GPG Key ID: 970C6E89EB0547A9
2 changed files with 9 additions and 0 deletions

View File

@ -19,6 +19,10 @@
}; };
}; };
home-manager.users.moritz.home.packages = with pkgs; [
jetbrains.idea-ultimate
];
# BOOT # BOOT
boot = { boot = {
supportedFilesystems = [ "btrfs" ]; supportedFilesystems = [ "btrfs" ];

View File

@ -1,5 +1,6 @@
{ lib { lib
, config , config
, pkgs
, ... , ...
}: }:
@ -24,5 +25,9 @@ in
updateResolvConf = true; updateResolvConf = true;
}; };
}; };
environment.systemPackages = with pkgs; [
jetbrains.pycharm-professional
];
programs.dconf.enable = true;
}; };
} }