mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-09 04:10:05 +00:00
✨ Disable youtube-music module due to issue, add jo to docker group
Some checks failed
Nix: build nixos-/home modules / Validate x86_64-linux (push) Has been cancelled
Trufflehog: check for exposed secrets / Run trufflehog (push) Has been cancelled
Nix: check for unused code / Run deadnix (push) Has been cancelled
Nix: validate flake / Validate x86_64-linux (push) Has been cancelled
Some checks failed
Nix: build nixos-/home modules / Validate x86_64-linux (push) Has been cancelled
Trufflehog: check for exposed secrets / Run trufflehog (push) Has been cancelled
Nix: check for unused code / Run deadnix (push) Has been cancelled
Nix: validate flake / Validate x86_64-linux (push) Has been cancelled
This commit is contained in:
parent
d65c18cf32
commit
4bf0f889ab
4 changed files with 47 additions and 2 deletions
37
.github/workflows/build-modules.yml
vendored
Normal file
37
.github/workflows/build-modules.yml
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
name: "Nix: build nixos-/home modules"
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
paths:
|
||||
- "modules/**.nix"
|
||||
- "**.lock"
|
||||
- ".github/workflows/build-modules.yml"
|
||||
|
||||
jobs:
|
||||
check-flake:
|
||||
name: Validate x86_64-linux
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
outputs: [nixosModules, homeModules]
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ github.ref_name }}
|
||||
persist-credentials: false
|
||||
|
||||
- name: Install Lix
|
||||
uses: ./.github/actions/install-lix
|
||||
|
||||
- name: Setup Attic cache
|
||||
uses: ryanccn/attic-action@v0.3.2
|
||||
with:
|
||||
endpoint: https://cache.thevoid.cafe
|
||||
cache: puzzlevision
|
||||
token: ${{ secrets.ATTIC_TOKEN }}
|
||||
|
||||
- name: Buid flake
|
||||
run: nix build .#nixosModules.puzzlevision
|
|
@ -10,7 +10,7 @@ let
|
|||
in
|
||||
{
|
||||
programs.youtube-music = {
|
||||
enable = true;
|
||||
enable = false;
|
||||
options = {
|
||||
tray = true;
|
||||
trayClickPlayPause = true;
|
||||
|
|
|
@ -38,6 +38,7 @@
|
|||
ghostty
|
||||
teams-for-linux
|
||||
enpass
|
||||
youtube-music
|
||||
|
||||
## WEB
|
||||
ungoogled-chromium
|
||||
|
|
|
@ -13,12 +13,19 @@
|
|||
users.jo = {
|
||||
enable = true;
|
||||
hashedPassword = "$6$mvK9bT756Aok54Vt$vBRnT66Vb3HL0Y5rEMJlHvKkvzVQ.KUciInTmW3FCBFT00IuFMpz3q9RhXPLTLMRPho65bTg9hMnFPb84I774.";
|
||||
extraGroups = [ "wheel" ];
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"docker"
|
||||
];
|
||||
};
|
||||
|
||||
archetypes.laptop.enable = true;
|
||||
};
|
||||
|
||||
networking.extraHosts = ''
|
||||
127.0.0.1 dev.bl-projekte.de
|
||||
'';
|
||||
|
||||
# Configure 8GB SWAP partition
|
||||
swapDevices = [
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue