This commit is contained in:
Lillian-Violet 2023-12-20 19:27:35 +01:00
commit cce2e16c6e
5 changed files with 25 additions and 23 deletions

View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1702814335, "lastModified": 1703026685,
"narHash": "sha256-Qck7BAMi3eydzT1WFOzp/SgECetyPpOn1dLgmxH2ebQ=", "narHash": "sha256-AkualfMbc40HkDR2AZc6u71pcap50wDQOXFCY1ULDUA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "e4dba0bd01956170667458be7b45f68170a63651", "rev": "efc177c15f2a8bb063aeb250fe3c7c21e1de265e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -23,11 +23,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1702312524, "lastModified": 1702830618,
"narHash": "sha256-gkZJRDBUCpTPBvQk25G0B7vfbpEYM5s5OZqghkjZsnE=", "narHash": "sha256-lvhwIvRwhOLgzbRuYkqHy4M5cQHYs4ktL6/hyuBS6II=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "a9bf124c46ef298113270b1f84a164865987a91c", "rev": "91a00709aebb3602f172a0bf47ba1ef013e34835",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -55,11 +55,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1702312524, "lastModified": 1702830618,
"narHash": "sha256-gkZJRDBUCpTPBvQk25G0B7vfbpEYM5s5OZqghkjZsnE=", "narHash": "sha256-lvhwIvRwhOLgzbRuYkqHy4M5cQHYs4ktL6/hyuBS6II=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "a9bf124c46ef298113270b1f84a164865987a91c", "rev": "91a00709aebb3602f172a0bf47ba1ef013e34835",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -99,11 +99,11 @@
"nixpkgs-stable": "nixpkgs-stable" "nixpkgs-stable": "nixpkgs-stable"
}, },
"locked": { "locked": {
"lastModified": 1702812162, "lastModified": 1702937567,
"narHash": "sha256-18cKptpAAfkatdQgjO5SZXZsbc1IVPRoYx2AxaiooL4=", "narHash": "sha256-bUNl3GPqRgTGp13+oV1DrYa1/NHuGHo5SKmr+RqC/2g=",
"owner": "Mic92", "owner": "Mic92",
"repo": "sops-nix", "repo": "sops-nix",
"rev": "21f2b8f123a1601fef3cf6bbbdf5171257290a77", "rev": "f7db64b88dabc95e4f7bee20455f418e7ab805d4",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -56,6 +56,7 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
# Coding: # Coding:
direnv
git git
kate kate

View file

@ -95,7 +95,7 @@
aria2 aria2
git-filter-repo git-filter-repo
home-manager home-manager
nextcloud27 nextcloud28
nginx nginx
noto-fonts noto-fonts
noto-fonts-emoji-blob-bin noto-fonts-emoji-blob-bin
@ -150,7 +150,7 @@
defaults.email = "letsencrypt@gladtherescake.eu"; defaults.email = "letsencrypt@gladtherescake.eu";
}; };
users.groups.virtualMail = {}; # users.groups.virtualMail = {};
users.users = { users.users = {
lillian = { lillian = {

View file

@ -20,13 +20,13 @@
sops.secrets."mailpass".mode = "0440"; sops.secrets."mailpass".mode = "0440";
sops.secrets."mailpass".owner = config.users.users.virtualMail.name; sops.secrets."mailpass".owner = config.users.users.virtualMail.name;
users.users = { # users.users = {
virtualMail = { # virtualMail = {
isSystemUser = true; # isSystemUser = true;
isNormalUser = false; # isNormalUser = false;
group = "virtualMail"; # group = "virtualMail";
}; # };
}; # };
mailserver = { mailserver = {
enable = true; enable = true;

View file

@ -48,7 +48,7 @@
enable = true; enable = true;
hostName = "nextcloud.gladtherescake.eu"; hostName = "nextcloud.gladtherescake.eu";
package = pkgs.nextcloud27; package = pkgs.nextcloud28;
# Use HTTPS for links # Use HTTPS for links
https = true; https = true;
@ -74,7 +74,8 @@
}; };
# List of apps we want to install and are already packaged in # List of apps we want to install and are already packaged in
# https://github.com/NixOS/nixpkgs/blob/master/pkgs/servers/nextcloud/packages/nextcloud-apps.json # https://github.com/NixOS/nixpkgs/blob/master/pkgs/servers/nextcloud/packages/nextcloud-apps.json
inherit calendar contacts deck forms music notes onlyoffice polls twofactor_nextcloud_notification unsplash; #inherit calendar contacts deck forms notes onlyoffice polls twofactor_nextcloud_notification unsplash;
#inherit calendar contacts deck forms music news notes onlyoffice polls twofactor_nextcloud_notification unsplash;
}; };
config = { config = {