remove aqua
This commit is contained in:
parent
90d6a12a77
commit
05b8342be4
7 changed files with 156 additions and 139 deletions
|
|
@ -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
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue