Compare commits
No commits in common. "9432adb3559ba2cf8374dd1963257cbc4a340189" and "4b4ace72b24afb72533b0c4c311543210ebb67a6" have entirely different histories.
9432adb355
...
4b4ace72b2
6 changed files with 20 additions and 27 deletions
|
@ -1,14 +0,0 @@
|
||||||
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,6 +239,14 @@ 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,7 +144,6 @@ 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 = "LkWFZVCL8h5MAd5T89CApjsjuKS2aw8OZFWFx+OrGkk=";
|
sha256 = "00p6jywj43szcmjg13qh3kqhd98swnv7p9kwrcs1n5xr8hkx7lnm";
|
||||||
};
|
};
|
||||||
|
|
||||||
dontUnpack = true;
|
dontUnpack = true;
|
||||||
|
|
Loading…
Reference in a new issue