all kinds of different language scripts

This commit is contained in:
Chris Cochrun 2024-07-18 17:20:07 -05:00
parent 5400f80b55
commit 2a76649221
8 changed files with 143 additions and 1 deletions

View file

@ -13,6 +13,9 @@
url = "github:danth/stylix";
inputs.nixpkgs.follows = "nixpkgs";
};
quickemu = {
url = "https://flakehub.com/f/quickemu-project/quickemu/4.9.6.tar.gz";
};
# hyprland = {
# type = "git";
# url = "https://github.com/hyprwm/Hyprland";
@ -67,6 +70,7 @@
nixpkgs-stable,
home-manager,
# hyprland,
quickemu,
nixos-hardware,
emacs,
nix-bitcoin,
@ -96,6 +100,17 @@
lib = nixpkgs.lib;
in {
devShell = pkgsForSystem.mkShell {
name = "devy";
nativeBuildInputs = [];
buildInputs = with pkgsForSystem; [
cargo
rustc
clippy
rustfmt
rust-analyzer
];
};
nixosConfigurations = {
syl = lib.nixosSystem {
inherit system;