feat: add REAPER
This commit is contained in:
parent
c90c508974
commit
76c2cdeedf
2 changed files with 5 additions and 1 deletions
|
@ -7,6 +7,8 @@
|
||||||
|
|
||||||
console.keyMap = "us";
|
console.keyMap = "us";
|
||||||
|
|
||||||
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = { PasswordAuthentication = false; };
|
settings = { PasswordAuthentication = false; };
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
{ config, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ ../common/home.nix ];
|
imports = [ ../common/home.nix ];
|
||||||
|
|
||||||
home.stateVersion = "24.05";
|
home.stateVersion = "24.05";
|
||||||
|
|
||||||
|
home.packages = with pkgs; [ reaper ];
|
||||||
|
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
localVariables = {
|
localVariables = {
|
||||||
PROMPT = ''
|
PROMPT = ''
|
||||||
|
|
Loading…
Reference in a new issue