mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-06-07 13:29:22 +02:00
update lock
This commit is contained in:
parent
dc8c8ee687
commit
2e37066e39
3 changed files with 62 additions and 43 deletions
|
@ -49,6 +49,20 @@
|
|||
enable = true;
|
||||
motherboard = "intel";
|
||||
};
|
||||
postgresql = {
|
||||
enable = false;
|
||||
#extraPlugins = ps: with ps; [ pg_libversion ];
|
||||
enableTCPIP = true;
|
||||
initialScript = pkgs.writeText "backend-initScript" ''
|
||||
CREATE DATABASE repology
|
||||
CREATE USER repology WITH PASSWORD 'repology'
|
||||
GRANT ALL ON DATABASE repology TO repology
|
||||
'';
|
||||
authentication = pkgs.lib.mkOverride 10 ''
|
||||
#type database DBuser auth-method
|
||||
local all all trust
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
nixpkgs = {
|
||||
|
@ -94,12 +108,17 @@
|
|||
})
|
||||
element-desktop
|
||||
mumble
|
||||
python3
|
||||
ffmpeg-full
|
||||
|
||||
# Theming
|
||||
catppuccin-kvantum
|
||||
catppuccin-kde
|
||||
catppuccin-gtk
|
||||
#catppuccin-gtk
|
||||
localPkgs.tela-icon-theme-git
|
||||
git
|
||||
rsync
|
||||
subversion
|
||||
];
|
||||
|
||||
programs = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue