mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
chore: update flake
This commit is contained in:
parent
e07b3c2b6e
commit
fb37690bc0
8 changed files with 3088 additions and 887 deletions
|
|
@ -412,8 +412,9 @@ A short overview over each input and what it does:
|
||||||
swarsel-modules.url = "github:Swarsel/swarsel-modules/main";
|
swarsel-modules.url = "github:Swarsel/swarsel-modules/main";
|
||||||
swarsel-nix.url = "github:Swarsel/swarsel-nix/main";
|
swarsel-nix.url = "github:Swarsel/swarsel-nix/main";
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager";
|
# url = "github:nix-community/home-manager";
|
||||||
# url = "github:Swarsel/home-manager/module/pizauth";
|
# url = "github:Swarsel/home-manager/main";
|
||||||
|
url = "github:JuneStepp/home-manager/anki-fix-booleans";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
swarsel.url = "github:Swarsel/.dotfiles";
|
swarsel.url = "github:Swarsel/.dotfiles";
|
||||||
|
|
@ -4729,6 +4730,9 @@ Mostly used to install some compilers and lsp's that I want to have available wh
|
||||||
"jitsi-meet-1.0.8043"
|
"jitsi-meet-1.0.8043"
|
||||||
"electron-29.4.6"
|
"electron-29.4.6"
|
||||||
"SDL_ttf-2.0.11"
|
"SDL_ttf-2.0.11"
|
||||||
|
# audacity?
|
||||||
|
"mbedtls-2.28.10"
|
||||||
|
# "qtwebengine-5.15.19"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
@ -10719,20 +10723,22 @@ Options that I need specifically at work. There are more options at [[#h:f0b2ea9
|
||||||
runAsRoot = true;
|
runAsRoot = true;
|
||||||
swtpm.enable = true;
|
swtpm.enable = true;
|
||||||
vhostUserPackages = with pkgs; [ virtiofsd ];
|
vhostUserPackages = with pkgs; [ virtiofsd ];
|
||||||
ovmf = {
|
# ovmf = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
packages = [
|
# packages = [
|
||||||
(pkgs.OVMFFull.override {
|
# (pkgs.OVMFFull.override {
|
||||||
secureBoot = true;
|
# secureBoot = true;
|
||||||
tpmSupport = true;
|
# tpmSupport = true;
|
||||||
}).fd
|
# }).fd
|
||||||
];
|
# ];
|
||||||
};
|
# };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
remmina
|
||||||
|
# gp-onsaml-gui
|
||||||
stable24_11.python39
|
stable24_11.python39
|
||||||
qemu
|
qemu
|
||||||
packer
|
packer
|
||||||
|
|
@ -14500,7 +14506,7 @@ This service changes the screen hue at night. I am not sure if that really does
|
||||||
programs.spicetify = {
|
programs.spicetify = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# spotifyPackage = pkgs.stable24_11.spotify;
|
# spotifyPackage = pkgs.stable24_11.spotify;
|
||||||
spotifyPackage = pkgs.spotify;
|
spotifyPackage = pkgs.stable.spotify;
|
||||||
enabledExtensions = with spicePkgs.extensions; [
|
enabledExtensions = with spicePkgs.extensions; [
|
||||||
fullAppDisplay
|
fullAppDisplay
|
||||||
shuffle
|
shuffle
|
||||||
|
|
@ -14673,7 +14679,7 @@ This service changes the screen hue at night. I am not sure if that really does
|
||||||
|
|
||||||
programs.anki = {
|
programs.anki = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.anki;
|
# # package = pkgs.anki;
|
||||||
hideBottomBar = true;
|
hideBottomBar = true;
|
||||||
hideBottomBarMode = "always";
|
hideBottomBarMode = "always";
|
||||||
hideTopBar = true;
|
hideTopBar = true;
|
||||||
|
|
@ -14684,6 +14690,7 @@ This service changes the screen hue at night. I am not sure if that really does
|
||||||
sync = {
|
sync = {
|
||||||
autoSync = false; # sync on profile close will delay system shutdown
|
autoSync = false; # sync on profile close will delay system shutdown
|
||||||
syncMedia = true;
|
syncMedia = true;
|
||||||
|
autoSyncMediaMinutes = 5;
|
||||||
url = "https://${globals.services.ankisync.domain}";
|
url = "https://${globals.services.ankisync.domain}";
|
||||||
usernameFile = nixosConfig.sops.secrets.anki-user.path;
|
usernameFile = nixosConfig.sops.secrets.anki-user.path;
|
||||||
# this is not the password but the syncKey
|
# this is not the password but the syncKey
|
||||||
|
|
|
||||||
3757
flake.lock
generated
3757
flake.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -20,8 +20,9 @@
|
||||||
swarsel-modules.url = "github:Swarsel/swarsel-modules/main";
|
swarsel-modules.url = "github:Swarsel/swarsel-modules/main";
|
||||||
swarsel-nix.url = "github:Swarsel/swarsel-nix/main";
|
swarsel-nix.url = "github:Swarsel/swarsel-nix/main";
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager";
|
# url = "github:nix-community/home-manager";
|
||||||
# url = "github:Swarsel/home-manager/module/pizauth";
|
# url = "github:Swarsel/home-manager/main";
|
||||||
|
url = "github:JuneStepp/home-manager/anki-fix-booleans";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
swarsel.url = "github:Swarsel/.dotfiles";
|
swarsel.url = "github:Swarsel/.dotfiles";
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ in
|
||||||
|
|
||||||
programs.anki = {
|
programs.anki = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.anki;
|
# # package = pkgs.anki;
|
||||||
hideBottomBar = true;
|
hideBottomBar = true;
|
||||||
hideBottomBarMode = "always";
|
hideBottomBarMode = "always";
|
||||||
hideTopBar = true;
|
hideTopBar = true;
|
||||||
|
|
@ -27,6 +27,7 @@ in
|
||||||
sync = {
|
sync = {
|
||||||
autoSync = false; # sync on profile close will delay system shutdown
|
autoSync = false; # sync on profile close will delay system shutdown
|
||||||
syncMedia = true;
|
syncMedia = true;
|
||||||
|
autoSyncMediaMinutes = 5;
|
||||||
url = "https://${globals.services.ankisync.domain}";
|
url = "https://${globals.services.ankisync.domain}";
|
||||||
usernameFile = nixosConfig.sops.secrets.anki-user.path;
|
usernameFile = nixosConfig.sops.secrets.anki-user.path;
|
||||||
# this is not the password but the syncKey
|
# this is not the password but the syncKey
|
||||||
|
|
|
||||||
|
|
@ -81,8 +81,8 @@
|
||||||
# spotify
|
# spotify
|
||||||
# vesktop # discord client
|
# vesktop # discord client
|
||||||
# nextcloud-client # enables a systemd service that I do not want
|
# nextcloud-client # enables a systemd service that I do not want
|
||||||
# element-desktop
|
|
||||||
# spotify-player
|
# spotify-player
|
||||||
|
# element-desktop
|
||||||
|
|
||||||
nicotine-plus
|
nicotine-plus
|
||||||
stable.transmission_3
|
stable.transmission_3
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ in
|
||||||
programs.spicetify = {
|
programs.spicetify = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# spotifyPackage = pkgs.stable24_11.spotify;
|
# spotifyPackage = pkgs.stable24_11.spotify;
|
||||||
spotifyPackage = pkgs.spotify;
|
spotifyPackage = pkgs.stable.spotify;
|
||||||
enabledExtensions = with spicePkgs.extensions; [
|
enabledExtensions = with spicePkgs.extensions; [
|
||||||
fullAppDisplay
|
fullAppDisplay
|
||||||
shuffle
|
shuffle
|
||||||
|
|
|
||||||
|
|
@ -88,6 +88,9 @@
|
||||||
"jitsi-meet-1.0.8043"
|
"jitsi-meet-1.0.8043"
|
||||||
"electron-29.4.6"
|
"electron-29.4.6"
|
||||||
"SDL_ttf-2.0.11"
|
"SDL_ttf-2.0.11"
|
||||||
|
# audacity?
|
||||||
|
"mbedtls-2.28.10"
|
||||||
|
# "qtwebengine-5.15.19"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -141,20 +141,22 @@ in
|
||||||
runAsRoot = true;
|
runAsRoot = true;
|
||||||
swtpm.enable = true;
|
swtpm.enable = true;
|
||||||
vhostUserPackages = with pkgs; [ virtiofsd ];
|
vhostUserPackages = with pkgs; [ virtiofsd ];
|
||||||
ovmf = {
|
# ovmf = {
|
||||||
enable = true;
|
# enable = true;
|
||||||
packages = [
|
# packages = [
|
||||||
(pkgs.OVMFFull.override {
|
# (pkgs.OVMFFull.override {
|
||||||
secureBoot = true;
|
# secureBoot = true;
|
||||||
tpmSupport = true;
|
# tpmSupport = true;
|
||||||
}).fd
|
# }).fd
|
||||||
];
|
# ];
|
||||||
};
|
# };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
remmina
|
||||||
|
# gp-onsaml-gui
|
||||||
stable24_11.python39
|
stable24_11.python39
|
||||||
qemu
|
qemu
|
||||||
packer
|
packer
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue