mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
22 lines
458 B
Nix
22 lines
458 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.logind.lidSwitch = "ignore";
|
|
#services.logind.lidSwitchDocked = "ignore";
|
|
|
|
users.users.yoda = {
|
|
packages = with pkgs; [
|
|
git
|
|
htop
|
|
screen
|
|
];
|
|
};
|
|
|
|
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
|
|
home.file."readonly-git/BikeTripPlanner".source = (builtins.fetchGit {
|
|
url = "https://github.com/langbein-daniel/BikeTripPlanner";
|
|
#leaveDotGit = true;
|
|
});
|
|
};
|
|
}
|