Compare commits
No commits in common. "5bff8ead3b454029a558c6fde1b9815571af5afc" and "b8345d5e0666570d5d228f0e44322115c71a35a9" have entirely different histories.
5bff8ead3b
...
b8345d5e06
3 changed files with 4 additions and 12 deletions
|
@ -29,5 +29,5 @@ In order to deploy new configuration changes after the initial NixOS installatio
|
||||||
Then you can deploy the new configuration:
|
Then you can deploy the new configuration:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
deploy .#<configuration name>
|
nix run github:serokell/deploy-rs .#<configuration name>
|
||||||
```
|
```
|
||||||
|
|
|
@ -98,13 +98,12 @@
|
||||||
checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy) deploy-rs.lib;
|
checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy) deploy-rs.lib;
|
||||||
|
|
||||||
devShells.${system}.default = pkgs.mkShell {
|
devShells.${system}.default = pkgs.mkShell {
|
||||||
packages = with pkgs; [
|
nativeBuildInputs = with pkgs; [
|
||||||
alejandra
|
|
||||||
git
|
git
|
||||||
helix
|
helix
|
||||||
nil
|
|
||||||
pkgs.home-manager
|
pkgs.home-manager
|
||||||
pkgs.deploy-rs
|
alejandra
|
||||||
|
nil
|
||||||
];
|
];
|
||||||
|
|
||||||
shellHook = ''
|
shellHook = ''
|
||||||
|
|
|
@ -8,11 +8,4 @@
|
||||||
efiSupport = true;
|
efiSupport = true;
|
||||||
efiInstallAsRemovable = true;
|
efiInstallAsRemovable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
# Firewall
|
|
||||||
networking.nftables.enable = true;
|
|
||||||
networking.firewall = {
|
|
||||||
enable = true;
|
|
||||||
allowedTCPPorts = [22 80 443];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue