Compare commits
2 commits
0a5226d6fd
...
08824dddf3
| Author | SHA1 | Date | |
|---|---|---|---|
| 08824dddf3 | |||
| 120583cea7 |
4 changed files with 8 additions and 3 deletions
|
|
@ -96,6 +96,7 @@
|
|||
nixpkgs-unstable = (import "${nixpkgs-unstable-patched}/flake.nix").outputs {self = inputs.self;};
|
||||
nixpkgs = (import "${nixpkgs-patched}/flake.nix").outputs {self = inputs.self;};
|
||||
in {
|
||||
formatter.x86_64-linux = nixpkgs-unstable.legacyPackages.x86_64-linux.alejandra;
|
||||
devShells.x86_64-linux.default = nixpkgs.legacyPackages.x86_64-linux.mkShell {
|
||||
name = "toast-devshell";
|
||||
# The agenix cli is not needed to activate a configuration, so instead of installing it
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@
|
|||
comment = "Application for managing and playing games on Steam";
|
||||
};
|
||||
};
|
||||
programs.plasma.input.keyboard.layouts = lib.mkForce [ "us" ];
|
||||
programs.plasma.input.keyboard.layouts = lib.mkForce ["us"];
|
||||
}
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,8 @@
|
|||
{pkgs, config, ...}: {
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
home-manager.users.toast = {
|
||||
programs.helix = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ with pkgs; {
|
|||
*/
|
||||
home.file.".jdks/jdk8".source = "${pkgs.jdk8}/lib/openjdk";
|
||||
home.file.".jdks/jdk17".source = let
|
||||
jdk17 = pkgs.jdk17.override { enableJavaFX = true; };
|
||||
jdk17 = pkgs.jdk17.override {enableJavaFX = true;};
|
||||
in "${jdk17}/lib/openjdk";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue