1
0
Fork 0

Update nix-flatpak to 0.4.1

This commit is contained in:
Aires 2024-04-15 12:00:08 -04:00
parent e0fb6ff716
commit d2b2a1d594
4 changed files with 36 additions and 36 deletions

View file

@ -117,11 +117,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1713019815, "lastModified": 1713166971,
"narHash": "sha256-jzTo97VeKMNfnKw3xU+uiU5C7wtnLudsbwl/nwPLC7s=", "narHash": "sha256-t0P/rKlsE5l1O3O2LYtAelLzp7PeoPCSzsIietQ1hSM=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "8fdf329526f06886b53b94ddf433848a0d142984", "rev": "1c43dcfac48a2d622797f7ab741670fdbcf8f609",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -158,16 +158,16 @@
}, },
"nix-flatpak": { "nix-flatpak": {
"locked": { "locked": {
"lastModified": 1708268179, "lastModified": 1711997201,
"narHash": "sha256-NNVuhf84AeDTxadfSGnFqPHR0ED+QyM2gmu+Wyz6PrY=", "narHash": "sha256-J71xzQlVYsjagA4AsVwRazhBh2rZrPpKvxTgs6UzL7c=",
"owner": "gmodena", "owner": "gmodena",
"repo": "nix-flatpak", "repo": "nix-flatpak",
"rev": "a243cb0522f6240c194b873dde68e25370b06034", "rev": "b76fa31346db7fc958a9898f3c594696ca71c4fd",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "gmodena", "owner": "gmodena",
"ref": "v0.3.0", "ref": "v0.4.1",
"repo": "nix-flatpak", "repo": "nix-flatpak",
"type": "github" "type": "github"
} }
@ -222,11 +222,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1712791164, "lastModified": 1712963716,
"narHash": "sha256-3sbWO1mbpWsLepZGbWaMovSO7ndZeFqDSdX0hZ9nVyw=", "narHash": "sha256-WKm9CvgCldeIVvRz87iOMi8CFVB1apJlkUT4GGvA0iM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "1042fd8b148a9105f3c0aca3a6177fd1d9360ba5", "rev": "cfd6b5fc90b15709b780a5a1619695a88505a176",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -11,7 +11,7 @@
lanzaboote.url = "github:nix-community/lanzaboote/v0.3.0"; lanzaboote.url = "github:nix-community/lanzaboote/v0.3.0";
# Flatpak support # Flatpak support
nix-flatpak.url = "github:gmodena/nix-flatpak/v0.3.0"; nix-flatpak.url = "github:gmodena/nix-flatpak/v0.4.1";
# Hardware configurations # Hardware configurations
nixos-hardware.url = "github:NixOS/nixos-hardware/master"; nixos-hardware.url = "github:NixOS/nixos-hardware/master";

View file

@ -15,8 +15,8 @@ with lib;
services.flatpak = { services.flatpak = {
enable = true; enable = true;
# Manage all Flatpaks # Manage all Flatpak packages and remotes
uninstallUnmanagedPackages = true; uninstallUnmanaged = true;
# Enable daily automatic updates # Enable daily automatic updates
update.auto = { update.auto = {

View file

@ -66,31 +66,31 @@ with lib;
]; ];
}; };
programs = { programs = {
# Let home Manager install and manage itself. # Let home Manager install and manage itself.
home-manager.enable = true; home-manager.enable = true;
# Set up git # Set up git
git = { git = {
# Name and email set in nix-secrets # Name and email set in nix-secrets
enable = true; enable = true;
extraConfig = { extraConfig = {
push.autoSetupRemote = "true"; push.autoSetupRemote = "true";
}; };
}; };
# Set up Zsh # Set up Zsh
zsh = { zsh = {
# Install and source the p10k theme # Install and source the p10k theme
plugins = [ plugins = [
{ name = "powerlevel10k"; src = pkgs.zsh-powerlevel10k; file = "share/zsh-powerlevel10k/powerlevel10k.zsh-theme"; } { name = "powerlevel10k"; src = pkgs.zsh-powerlevel10k; file = "share/zsh-powerlevel10k/powerlevel10k.zsh-theme"; }
{ name = "powerlevel10k-config"; src = ./p10k-config; file = "p10k.zsh"; } { name = "powerlevel10k-config"; src = ./p10k-config; file = "p10k.zsh"; }
]; ];
shellAliases = { shellAliases = {
please = "sudo"; please = "sudo";
}; };
}; };
}; };
# SSH entries set in nix-secrets # SSH entries set in nix-secrets
}; };