1
0
Fork 0

remove aqua

This commit is contained in:
cătălin 2025-01-01 23:19:30 +01:00
commit 05b8342be4
No known key found for this signature in database
7 changed files with 156 additions and 139 deletions

View file

@ -3,22 +3,22 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
ghostty = {
url = "github:ghostty-org/ghostty";
nix-snapd.url = "github:nix-community/nix-snapd";
nix-snapd.inputs.nixpkgs.follows = "nixpkgs";
home-manager = {
url = "github:nix-community/home-manager/release-24.11";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, ghostty, ... }@inputs: {
outputs = { self, nixpkgs, nix-snapd, home-manager, ... }@inputs: {
nixosConfigurations.limgrave = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
{
environment.systemPackages = [
ghostty.packages.x86_64-linux.default
];
}
nix-snapd.nixosModules.default
home-manager.nixosModules.home-manager
];
};
};
}
}