mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-23 21:25:28 -08:00
Compare commits
10 commits
8e8b8e2c6c
...
9d756a2046
Author | SHA1 | Date | |
---|---|---|---|
9d756a2046 | |||
cde364c9ac | |||
174b6a951c | |||
257c1860be | |||
0cd88b639b | |||
527c3b7454 | |||
2c66774671 | |||
bdc2d0a30d | |||
7df99632fa | |||
09f5e03ed7 |
7 changed files with 199 additions and 15 deletions
24
flake.lock
24
flake.lock
|
@ -39,11 +39,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1683276747,
|
||||
"narHash": "sha256-T3st1VBg3wmhHyBQb0z12sTSGsQgiu3mxkS61nLO8Xs=",
|
||||
"lastModified": 1685189510,
|
||||
"narHash": "sha256-Hq5WF7zIixojPgvhgcd6MBvywwycVZ9wpK/8ogOyoaA=",
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"rev": "669669fcb403e3137dfe599bbcc26e60502c3543",
|
||||
"rev": "2d963854ae2499193c0c72fd67435fee34d3e4fd",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -58,11 +58,11 @@
|
|||
},
|
||||
"locked": {
|
||||
"dir": "nix",
|
||||
"lastModified": 1682527311,
|
||||
"narHash": "sha256-gFiQ62jbBfumg0IR4oXR/DRVunOxMd4lJ5+g+qjz7wA=",
|
||||
"lastModified": 1685177663,
|
||||
"narHash": "sha256-T3WC47AyxwPxwCmukrwE/alZLU3bu7ZuBrCW5DMefI8=",
|
||||
"owner": "kmonad",
|
||||
"repo": "kmonad",
|
||||
"rev": "3aa2f52536de853efbcb0f6e790c97a3734687ec",
|
||||
"rev": "97ac050f9818e942a706194adb7374f7b10ee339",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -105,11 +105,11 @@
|
|||
},
|
||||
"nixpkgs_2": {
|
||||
"locked": {
|
||||
"lastModified": 1683286087,
|
||||
"narHash": "sha256-xseOd7W7xwF5GOF2RW8qhjmVGrKoBz+caBlreaNzoeI=",
|
||||
"lastModified": 1684935479,
|
||||
"narHash": "sha256-6QMMsXMr2nhmOPHdti2j3KRHt+bai2zw+LJfdCl97Mk=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "3e313808bd2e0a0669430787fb22e43b2f4bf8bf",
|
||||
"rev": "f91ee3065de91a3531329a674a45ddcb3467a650",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -151,11 +151,11 @@
|
|||
"utils": "utils"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1671738303,
|
||||
"narHash": "sha256-PRgqtaWf2kMSYqVmcnmhTh+UsC0RmvXRTr+EOw5VZUA=",
|
||||
"lastModified": 1684964237,
|
||||
"narHash": "sha256-dDS+GhdZN2MAa2FJKFGM2gpgAXhx+xoMkpVsRx9qpDE=",
|
||||
"owner": "simple-nixos-mailserver",
|
||||
"repo": "nixos-mailserver",
|
||||
"rev": "6d0d9fb966cc565a3df74d3b686f924c7615118c",
|
||||
"rev": "1bcfcf786bc289ca1bd2c9d29d6f02d9141b1da3",
|
||||
"type": "gitlab"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -1,10 +1,14 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
system.activationScripts.copyStuff = "cp -r ${../../../rsrcs/giteaCustomDir}/. /Aurora/Forgejo/custom";
|
||||
|
||||
services.gitea = {
|
||||
enable = true;
|
||||
package = pkgs.forgejo;
|
||||
stateDir = "/Aurora/Forgejo";
|
||||
appName = "Nickiel's Repos";
|
||||
|
||||
settings = {
|
||||
|
||||
|
@ -20,6 +24,13 @@
|
|||
DOMAIN = "git.nickiel.net";
|
||||
LANDING_PAGE = "/explore/repos";
|
||||
};
|
||||
|
||||
mailer = {
|
||||
ENABLED = true;
|
||||
MAILER_TYPE = "sendmail";
|
||||
FROM = "noreply@nickiel.net";
|
||||
SENDMAIL_PATH = "${pkgs.system-sendmail}/bin/sendmail";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -29,7 +29,6 @@
|
|||
devices = [ "nodev" ];
|
||||
efiSupport = true;
|
||||
enable = true;
|
||||
version = 2;
|
||||
useOSProber = true;
|
||||
extraEntries = ''
|
||||
'';
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
devices = [ "nodev" ];
|
||||
efiSupport = true;
|
||||
enable = true;
|
||||
version = 2;
|
||||
useOSProber = false;
|
||||
extraEntries = ''
|
||||
menuentry 'Windows Boot Manager (on /dev/nvme0n1p1)' --class windows --class os $menuentry_id_option 'osprober-efi-364F-BE7A' {
|
||||
|
|
88
rsrcs/giteaCustomDir/public/img/favicon.svg
Normal file
88
rsrcs/giteaCustomDir/public/img/favicon.svg
Normal file
|
@ -0,0 +1,88 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 212 212"
|
||||
version="1.1"
|
||||
id="svg16"
|
||||
sodipodi:docname="favicon.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs20" />
|
||||
<sodipodi:namedview
|
||||
id="namedview18"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.9150943"
|
||||
inkscape:cx="65.004819"
|
||||
inkscape:cy="106.12771"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1007"
|
||||
inkscape:window-x="1440"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g14" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style2">
|
||||
circle {
|
||||
fill: none;
|
||||
stroke: #000;
|
||||
stroke-width: 15;
|
||||
}
|
||||
path {
|
||||
fill: none;
|
||||
stroke: #000;
|
||||
stroke-width: 25;
|
||||
}
|
||||
.orange {
|
||||
stroke:#ff6600;
|
||||
}
|
||||
.red {
|
||||
stroke:#d40000;
|
||||
}
|
||||
</style>
|
||||
<g
|
||||
transform="translate(6,6)"
|
||||
id="g14">
|
||||
<path
|
||||
d="M58 168 v-98 a50 50 0 0 1 50-50 h20"
|
||||
class="orange"
|
||||
id="path4"
|
||||
style="stroke:#0056ff;stroke-opacity:1" />
|
||||
<path
|
||||
d="M58 168 v-30 a50 50 0 0 1 50-50 h20"
|
||||
class="red"
|
||||
id="path6"
|
||||
style="stroke:#bb00e8;stroke-opacity:1" />
|
||||
<circle
|
||||
cx="142"
|
||||
cy="20"
|
||||
r="18"
|
||||
class="orange"
|
||||
id="circle8"
|
||||
style="stroke:#0056ff;stroke-opacity:1" />
|
||||
<circle
|
||||
cx="142"
|
||||
cy="88"
|
||||
r="18"
|
||||
class="red"
|
||||
id="circle10"
|
||||
style="stroke:#bb00e8;stroke-opacity:1" />
|
||||
<circle
|
||||
cx="58"
|
||||
cy="180"
|
||||
r="18"
|
||||
class="red"
|
||||
id="circle12"
|
||||
style="stroke:#bb00e8;stroke-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
88
rsrcs/giteaCustomDir/public/img/logo.svg
Normal file
88
rsrcs/giteaCustomDir/public/img/logo.svg
Normal file
|
@ -0,0 +1,88 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
viewBox="0 0 212 212"
|
||||
version="1.1"
|
||||
id="svg703"
|
||||
sodipodi:docname="logo.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs707" />
|
||||
<sodipodi:namedview
|
||||
id="namedview705"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.9150943"
|
||||
inkscape:cx="106.38313"
|
||||
inkscape:cy="106.38313"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="871"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="180"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g701" />
|
||||
<style
|
||||
type="text/css"
|
||||
id="style689">
|
||||
circle {
|
||||
fill: none;
|
||||
stroke: #000;
|
||||
stroke-width: 15;
|
||||
}
|
||||
path {
|
||||
fill: none;
|
||||
stroke: #000;
|
||||
stroke-width: 25;
|
||||
}
|
||||
.orange {
|
||||
stroke:#ff6600;
|
||||
}
|
||||
.red {
|
||||
stroke:#d40000;
|
||||
}
|
||||
</style>
|
||||
<g
|
||||
transform="translate(6,6)"
|
||||
id="g701">
|
||||
<path
|
||||
d="M58 168 v-98 a50 50 0 0 1 50-50 h20"
|
||||
class="orange"
|
||||
id="path691"
|
||||
style="stroke:#0056ff;stroke-opacity:1" />
|
||||
<path
|
||||
d="M58 168 v-30 a50 50 0 0 1 50-50 h20"
|
||||
class="red"
|
||||
id="path693"
|
||||
style="stroke:#bb00e8;stroke-opacity:1" />
|
||||
<circle
|
||||
cx="142"
|
||||
cy="20"
|
||||
r="18"
|
||||
class="orange"
|
||||
id="circle695"
|
||||
style="stroke:#0056ff;stroke-opacity:1" />
|
||||
<circle
|
||||
cx="142"
|
||||
cy="88"
|
||||
r="18"
|
||||
class="red"
|
||||
id="circle697"
|
||||
style="stroke:#bb00e8;stroke-opacity:1" />
|
||||
<circle
|
||||
cx="58"
|
||||
cy="180"
|
||||
r="18"
|
||||
class="red"
|
||||
id="circle699"
|
||||
style="stroke:#bb00e8;stroke-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
|
@ -100,7 +100,6 @@ in
|
|||
firefox # Internet access
|
||||
handbrake # dvd ripping
|
||||
inkscape # Vector drawing
|
||||
jellyfin-media-player # plex-like media player client
|
||||
kicad # PCB design
|
||||
krita # Raster drawing
|
||||
libreoffice # Office editing
|
||||
|
|
Loading…
Reference in a new issue