From 2e2ce81bb6f755c403713bc14e7fd4ebd2c04ae7 Mon Sep 17 00:00:00 2001 From: Polen Date: Tue, 18 Jun 2024 22:01:22 -0400 Subject: [PATCH] mhmmm --- configuration.nix | 1 - flake.lock | 6 +++--- flake.nix | 7 ++----- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/configuration.nix b/configuration.nix index f399ce4..2de0a03 100644 --- a/configuration.nix +++ b/configuration.nix @@ -98,7 +98,6 @@ }; programs.seahorse.enable = true; - xdg.portal.enable = true; xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; diff --git a/flake.lock b/flake.lock index c74731f..0a06956 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1707689078, - "narHash": "sha256-UUGmRa84ZJHpGZ1WZEBEUOzaPOWG8LZ0yPg1pdDF/yM=", + "lastModified": 1718530797, + "narHash": "sha256-pup6cYwtgvzDpvpSCFh1TEUjw2zkNpk8iolbKnyFmmU=", "owner": "nixos", "repo": "nixpkgs", - "rev": "f9d39fb9aff0efee4a3d5f4a6d7c17701d38a1d8", + "rev": "b60ebf54c15553b393d144357375ea956f89e9a9", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 90a1a12..a0018bc 100644 --- a/flake.nix +++ b/flake.nix @@ -5,14 +5,11 @@ nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; }; - outputs = { self, nixpkgs, ... }@inputs: - let - system = "x86_64-linux"; - pkgs = nixpkgs.legacyPackages.${system}; - in + outputs = { nixpkgs, ... }@inputs: { nixosConfigurations.default = nixpkgs.lib.nixosSystem { specialArgs = {inherit inputs;}; + system = "x86_64-linux"; modules = [ ./configuration.nix ];