From 39fa80f9dbff0e0f5ea2882ae8b2fa92cdc3ba78 Mon Sep 17 00:00:00 2001 From: Steph Date: Thu, 2 Feb 2023 20:25:03 +0100 Subject: [PATCH] aa --- configuration.nix | 7 ++++++- flake.lock | 19 ++++++++++++++++++- flake.nix | 3 ++- 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/configuration.nix b/configuration.nix index 1907410..5968b3b 100644 --- a/configuration.nix +++ b/configuration.nix @@ -119,6 +119,7 @@ obs-studio foliate pinta + prismlauncher ]; }; @@ -168,6 +169,8 @@ openvpn udev usbutils + evolution-ews + evolution gnome.gnome-tweaks gnomeExtensions.tray-icons-reloaded @@ -188,6 +191,9 @@ services.power-profiles-daemon.enable = false; services.tlp.enable = true; + services.flatpak.enable = true; + + #services.mysql.package = pkgs.mariadb; #services.mysql.enable = true; #services.mysql.ensureUsers = [ @@ -313,7 +319,6 @@ $NEW_PROMPT_COMMAND" set -g set-titles-string "#T" ''; - services.flatpak.enable = true; dconf.settings = { diff --git a/flake.lock b/flake.lock index af4aeb2..7becf45 100644 --- a/flake.lock +++ b/flake.lock @@ -37,10 +37,27 @@ "type": "github" } }, + "nixpkgs-unstable": { + "locked": { + "lastModified": 1675183161, + "narHash": "sha256-Zq8sNgAxDckpn7tJo7V1afRSk2eoVbu3OjI1QklGLNg=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "e1e1b192c1a5aab2960bf0a0bd53a2e8124fa18e", + "type": "github" + }, + "original": { + "owner": "nixos", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, "root": { "inputs": { "home": "home", - "nixpkgs": "nixpkgs" + "nixpkgs": "nixpkgs", + "nixpkgs-unstable": "nixpkgs-unstable" } } }, diff --git a/flake.nix b/flake.nix index 51aa500..30795a6 100644 --- a/flake.nix +++ b/flake.nix @@ -3,12 +3,13 @@ inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-22.05"; + nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; home.url = "github:nix-community/home-manager/release-22.05"; home.inputs.nixpkgs.follows = "nixpkgs"; }; - outputs = { self, nixpkgs, home }: { + outputs = { self, nixpkgs, nixpkgs-unstable, home }: { nixosConfigurations.iota = nixpkgs.lib.nixosSystem { system = "x86_64-linux";