mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
nixos: init vanadium by cloning carbon
This commit is contained in:
parent
96340f2e08
commit
dcadddad3a
21 changed files with 1335 additions and 0 deletions
46
nix/nixosModules/named/vanadium/packages.nix
Normal file
46
nix/nixosModules/named/vanadium/packages.nix
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
environment.systemPackages = [
|
||||
pkgs.agenix
|
||||
pkgs.deploy-rs
|
||||
];
|
||||
|
||||
programs.vim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
};
|
||||
programs.git.enable = true;
|
||||
|
||||
programs.dconf.enable = true;
|
||||
services.gnome.gnome-keyring.enable = true;
|
||||
programs.seahorse.enable = true;
|
||||
|
||||
# programs.steam.enable = true;
|
||||
|
||||
virtualisation = {
|
||||
docker.enable = true;
|
||||
virtualbox.host.enable = true;
|
||||
};
|
||||
users.users."leana".extraGroups = [
|
||||
"docker"
|
||||
"vboxusers"
|
||||
];
|
||||
|
||||
services.url-eater = {
|
||||
enable = true;
|
||||
filters = ''
|
||||
category "Spotify" {
|
||||
params "context@open.spotify.com" "si@open.spotify.com"
|
||||
}
|
||||
category "YouTube" {
|
||||
params "si@youtu.be"
|
||||
}
|
||||
category "Instagram" {
|
||||
params "utm_source@www.instagram.com"
|
||||
}
|
||||
'';
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue