fmt: cleanup
This commit is contained in:
parent
ceabb5261a
commit
5f86d0ec99
4 changed files with 12 additions and 10 deletions
|
|
@ -1,16 +1,14 @@
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: 0 */6 * * *
|
- cron: 0 */6 * * *
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
UpdateFlake:
|
UpdateFlake:
|
||||||
runs-on: native
|
runs-on: native
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Update flake
|
- name: Update flake
|
||||||
run: |
|
run: |
|
||||||
cd ${{ env.FORGEJO_WORKSPACE }}
|
cd ${{ env.FORGEJO_WORKSPACE }}
|
||||||
nix flake update
|
nix flake update
|
||||||
- name: Commit new Flake.lock
|
- name: Commit new Flake.lock
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,6 @@
|
||||||
{
|
{
|
||||||
description = "All encompassing flake";
|
description = "All encompassing flake";
|
||||||
|
|
||||||
nixConfig = {
|
|
||||||
allow-import-from-derivation = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules);
|
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules);
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
|
|
@ -75,6 +71,7 @@
|
||||||
|
|
||||||
niri-flake = {
|
niri-flake = {
|
||||||
url = "github:sodiboo/niri-flake";
|
url = "github:sodiboo/niri-flake";
|
||||||
|
# url = "github:Daholli/niri-flake/1067d35dd18f6a55f79873c944f1427a9eb7caa7";
|
||||||
inputs = {
|
inputs = {
|
||||||
niri-stable.follows = "niri";
|
niri-stable.follows = "niri";
|
||||||
nixpkgs.follows = "nixpkgs";
|
nixpkgs.follows = "nixpkgs";
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,6 @@ topLevel: {
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
git
|
git
|
||||||
];
|
];
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
homeManager.cholli =
|
homeManager.cholli =
|
||||||
|
|
|
||||||
|
|
@ -13,9 +13,17 @@
|
||||||
in
|
in
|
||||||
|
|
||||||
{
|
{
|
||||||
|
security.pam.services.gdm.enableGnomeKeyring = true;
|
||||||
|
services.displayManager.gdm = {
|
||||||
|
enable = true;
|
||||||
|
wayland = true;
|
||||||
|
};
|
||||||
|
|
||||||
environment = {
|
environment = {
|
||||||
systemPackages = [
|
systemPackages = with pkgs; [
|
||||||
zenbrowser
|
zenbrowser
|
||||||
|
|
||||||
|
sourcegit
|
||||||
];
|
];
|
||||||
|
|
||||||
sessionVariables = {
|
sessionVariables = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue