diff --git a/flake.nix b/flake.nix index 6d05009..9725997 100644 --- a/flake.nix +++ b/flake.nix @@ -48,7 +48,6 @@ home-manager.useUserPackages = true; home-manager.extraSpecialArgs.gui = true; home-manager.users.aly = import ./home/aly.nix; - home-manager.backupFileExtension = "bak"; } ]; }; diff --git a/system/aly-laptop.nix b/system/aly-laptop.nix index 6cd616f..1429770 100644 --- a/system/aly-laptop.nix +++ b/system/aly-laptop.nix @@ -8,6 +8,9 @@ fsType = "sshfs"; options = ["nodev,noatime,allow_other,IdentityFile=/home/aly/.ssh/id_ed25519"]; }; + services.gnome = { + gnome-browser-connector.enable = true; + }; services.logind = { lidSwitch = "suspend"; lidSwitchDocked = "ignore"; diff --git a/system/global.nix b/system/global.nix index df2f0f0..712fa6e 100644 --- a/system/global.nix +++ b/system/global.nix @@ -4,16 +4,10 @@ boot.loader.efi.canTouchEfiVariables = true; nix.settings.experimental-features = [ "nix-command" "flakes" ]; environment.systemPackages = with pkgs; [ - cargo rustc just git wget gcc gnumake autoconf automake pkg-config cifs-utils ntfs3g nixd + cargo rustc just git wget gcc gnumake autoconf automake pkg-config cifs-utils ntfs3g ]; - programs.nixvim = { - enable = true; - defaultEditor = true; - plugins.lsp = { - enable = true; - servers.nixd.enable = true; - }; - }; + programs.nixvim.enable = true; + programs.nixvim.defaultEditor = true; security.sudo.wheelNeedsPassword = false; networking.networkmanager.enable = true;