Compare commits
6 commits
4b4ace72b2
...
9432adb355
Author | SHA1 | Date | |
---|---|---|---|
9432adb355 | |||
7090f6614f | |||
0272834fcc | |||
62735b207a | |||
fcf5583ef0 | |||
25120dbe1a |
6 changed files with 27 additions and 20 deletions
14
.forgejo/workflows/check.yaml
Normal file
14
.forgejo/workflows/check.yaml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check:
|
||||||
|
runs-on: nix
|
||||||
|
container:
|
||||||
|
image: ghcr.io/eboskma/forgejo-nix-runner:latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Check flake
|
||||||
|
run: nix flake check
|
|
@ -239,14 +239,6 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
eboskma.wallpapers = {
|
|
||||||
enable = true;
|
|
||||||
images = [
|
|
||||||
../../../wallpapers/river-3840.png
|
|
||||||
../../../wallpapers/jwst-pillars-of-creation-3840.jpg
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
dunst
|
dunst
|
||||||
|
|
|
@ -47,7 +47,7 @@ if os.path.isfile(player_file):
|
||||||
player_found = False
|
player_found = False
|
||||||
player_changed = False
|
player_changed = False
|
||||||
player_index = 0
|
player_index = 0
|
||||||
for (index, p) in enumerate(players):
|
for index, p in enumerate(players):
|
||||||
if p.instance == current_player_name:
|
if p.instance == current_player_name:
|
||||||
player_found = True
|
player_found = True
|
||||||
player_index = index
|
player_index = index
|
||||||
|
|
|
@ -116,16 +116,16 @@ inputs: {
|
||||||
system = "aarch64-linux";
|
system = "aarch64-linux";
|
||||||
config = import ./regin/configuration.nix inputs;
|
config = import ./regin/configuration.nix inputs;
|
||||||
};
|
};
|
||||||
thor = {
|
# thor = {
|
||||||
system = "aarch64-linux";
|
# system = "aarch64-linux";
|
||||||
config = import ./thor/configuration.nix inputs;
|
# config = import ./thor/configuration.nix inputs;
|
||||||
# deploy = {
|
# # deploy = {
|
||||||
# host = "10.0.0.198";
|
# # host = "10.0.0.198";
|
||||||
# sshUser = "erwin";
|
# # sshUser = "erwin";
|
||||||
# buildOn = "local";
|
# # buildOn = "local";
|
||||||
# substituteOnTarget = true;
|
# # substituteOnTarget = true;
|
||||||
# };
|
# # };
|
||||||
};
|
# };
|
||||||
unifi = {
|
unifi = {
|
||||||
config = import ./unifi/configuration.nix inputs;
|
config = import ./unifi/configuration.nix inputs;
|
||||||
deploy = {
|
deploy = {
|
||||||
|
|
|
@ -144,6 +144,7 @@ in
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
../../modules/options
|
../../modules/options
|
||||||
|
inputs.anyrun.nixosModules.home-manager
|
||||||
] ++ (map (mod: (../../home-manager/modules + "/${mod}")) (builtins.attrNames (builtins.readDir ../../home-manager/modules)));
|
] ++ (map (mod: (../../home-manager/modules + "/${mod}")) (builtins.attrNames (builtins.readDir ../../home-manager/modules)));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ mkDerivation {
|
||||||
|
|
||||||
src = builtins.fetchurl {
|
src = builtins.fetchurl {
|
||||||
url = "https://probe.rs/files/69-probe-rs.rules";
|
url = "https://probe.rs/files/69-probe-rs.rules";
|
||||||
sha256 = "00p6jywj43szcmjg13qh3kqhd98swnv7p9kwrcs1n5xr8hkx7lnm";
|
sha256 = "LkWFZVCL8h5MAd5T89CApjsjuKS2aw8OZFWFx+OrGkk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
dontUnpack = true;
|
dontUnpack = true;
|
||||||
|
|
Loading…
Reference in a new issue