Compare commits

...

3 Commits

Author SHA1 Message Date
50ff9b7b56 add ci integration
Some checks are pending
Flake.lock / build (push) Waiting to run
2024-08-06 20:22:47 +02:00
f96d725558 change default shell for user 2024-08-06 18:54:32 +02:00
d5ed0a1880 more zsh settings 2024-08-06 18:51:39 +02:00
2 changed files with 29 additions and 0 deletions

26
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: Flake.lock
on:
schedule:
- cron: "0 6 * * *"
workflow_dispatch:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: cachix/install-nix-action@v20
- run: nix flake update
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Bump flake.lock
branch: main
commit_options: '--no-verify --signoff'
file_pattern: flake.lock
commit_user_name: Flake Bot
commit_author: Flake Bot <actions@github.com>
skip_dirty_check: false
skip_fetch: true

View File

@ -1,5 +1,8 @@
{ pkgs, ... }
:{
users.defaultUserShell = pkgs.zsh;
users.users.mo.shell = pkgs.zsh;
programs.zsh.enableCompletion = true;
programs.zsh.ohMyZsh.enable = true;
programs.zsh.ohMyZsh.theme = "agnoster";
}