initial attempt at nfs

This commit is contained in:
Chris Kruining 2025-07-09 23:05:08 +02:00
parent ee4d1eb158
commit 0fa527717e
Signed by: chris
SSH key fingerprint: SHA256:nG82MUfuVdRVyCKKWqhY+pCrbz9nbX6uzUns4RKa1Pg
11 changed files with 73 additions and 38 deletions

View file

@ -207,7 +207,7 @@ in
];
powerdevil = {
AC = {
AC = {
powerButtonAction = "shutDown";
whenLaptopLidClosed = "doNothing";
@ -215,10 +215,11 @@ in
dimDisplay.enable = false;
turnOffDisplay = {
idleTimeout = "never";
idleTimeout = "never";
};
};
battery = {
};
battery = {
powerButtonAction = "shutDown";
whenLaptopLidClosed = "doNothing";
@ -226,10 +227,11 @@ in
dimDisplay.enable = false;
turnOffDisplay = {
idleTimeout = "never";
idleTimeout = "never";
};
};
lowBattery = {
};
lowBattery = {
powerButtonAction = "shutDown";
whenLaptopLidClosed = "doNothing";
@ -237,9 +239,9 @@ in
dimDisplay.enable = false;
turnOffDisplay = {
idleTimeout = "never";
};
idleTimeout = "never";
};
};
};
kscreenlocker = {

View file

@ -1,7 +1,6 @@
{ config, lib, pkgs, user, ... }:
let
inherit (lib.options) mkEnableOption;
inherit (lib.attrsets) attrValues;
inherit (lib.modules) mkIf;
in
{
@ -13,10 +12,7 @@ in
environment.sessionVariables.GITHUB_TOKEN = "$(cat /run/agenix/tokenGH)";
home-manager.users.${user} = {
home.packages = attrValues {
inherit (pkgs) lazygit;
# inherit (pkgs.gitAndTools) gh git-open git-crypt;
};
home.packages = with pkgs; [ lazygit lazyjj jujutsu ];
programs = {
zsh.initContent = ''